all repos — fluxbox @ bdc25f3fc93d425d73f8dbb8087368dce6a49124

custom fork of the fluxbox windowmanager

fixed so we can comment lines in configfile
fluxgen fluxgen
commit

bdc25f3fc93d425d73f8dbb8087368dce6a49124

parent

2ea94bb32245834e3a5b1e836a96109f45210c35

1 files changed, 4 insertions(+), 2 deletions(-)

jump to
M src/Keys.ccsrc/Keys.cc

@@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -//$Id: Keys.cc,v 1.7 2002/01/09 14:11:20 fluxgen Exp $ +//$Id: Keys.cc,v 1.8 2002/01/10 14:24:09 fluxgen Exp $ #ifdef HAVE_CONFIG_H # include "config.h"

@@ -200,7 +200,9 @@ StringUtil::stringtok(val, linebuffer.get());

//must have at least 1 argument if (val.size()<=0) continue; - + + if (val[0][0]=='#') //the line is commented + continue; unsigned int key=0, mod=0; char keyarg=0;