all repos — fluxbox @ 1fe1da5ca0d9bfb84be88be61ded7dad667db05d

custom fork of the fluxbox windowmanager

fix parsing of Delay command
Mark Tiefenbruck mark@fluxbox.org
commit

1fe1da5ca0d9bfb84be88be61ded7dad667db05d

parent

99eaded40eadcbb3b3f3c30bf02a99d413a99751

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

jump to
M src/FbTk/Timer.ccsrc/FbTk/Timer.cc

@@ -251,7 +251,8 @@ Command<void> *DelayedCmd::parse(const std::string &command,

const std::string &args, bool trusted) { std::string cmd_str; - int err = StringUtil::getStringBetween(cmd_str, args.c_str(), '{', '}'); + int err = StringUtil::getStringBetween(cmd_str, args.c_str(), '{', '}', + " \t\n", true); if (err == 0) return 0;