diff options
author | fluxgen <fluxgen> | 2004-02-20 09:29:07 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2004-02-20 09:29:07 (GMT) |
commit | 6b3a626cbef1f50696c15937f77735ed1c916eb3 (patch) | |
tree | fa43ca4e303c3392e8b53316fde2e95e6d959188 /src/Keys.cc | |
parent | 3c78d753c0c1b293d20ad52e38586929bf47f13e (diff) | |
download | fluxbox_pavel-6b3a626cbef1f50696c15937f77735ed1c916eb3.zip fluxbox_pavel-6b3a626cbef1f50696c15937f77735ed1c916eb3.tar.bz2 |
filename fix, patch from Mathias Gumz
Diffstat (limited to 'src/Keys.cc')
-rw-r--r-- | src/Keys.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Keys.cc b/src/Keys.cc index 96a12c9..41af901 100644 --- a/src/Keys.cc +++ b/src/Keys.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | //$Id: Keys.cc,v 1.41 2003/12/30 18:14:33 fluxgen Exp $ | 22 | //$Id: Keys.cc,v 1.42 2004/02/20 09:29:07 fluxgen Exp $ |
23 | 23 | ||
24 | 24 | ||
25 | #include "Keys.hh" | 25 | #include "Keys.hh" |
@@ -158,7 +158,7 @@ bool Keys::addBinding(const std::string &linebuffer) { | |||
158 | if (val.size() <= 0) | 158 | if (val.size() <= 0) |
159 | return true; // empty lines are valid. | 159 | return true; // empty lines are valid. |
160 | 160 | ||
161 | if (val[0][0] == '#') //the line is commented | 161 | if (val[0][0] == '#' || val[0][0] == '!' ) //the line is commented |
162 | return true; // still a valid line. | 162 | return true; // still a valid line. |
163 | 163 | ||
164 | unsigned int key = 0, mod = 0; | 164 | unsigned int key = 0, mod = 0; |