Merge branch 'fix-baf'

next
Michael Stapelberg 2011-11-26 22:24:53 +00:00
commit 3c1c67e3f1
1 changed files with 5 additions and 4 deletions

View File

@ -420,11 +420,12 @@ void init_ws_for_output(Output *output, Con *content) {
continue;
DLOG("relevant command = %s\n", bind->command);
char *target = bind->command + strlen("workspace ");
/* We check if this is the workspace next/prev command. Beware: The
* workspace names "next" and "prev" are OK, so we check before
* stripping the double quotes */
/* We check if this is the workspace next/prev/back_and_forth command.
* Beware: The workspace names "next", "prev" and "back_and_forth" are
* OK, so we check before stripping the double quotes */
if (strncasecmp(target, "next", strlen("next")) == 0 ||
strncasecmp(target, "prev", strlen("prev")) == 0)
strncasecmp(target, "prev", strlen("prev")) == 0 ||
strncasecmp(target, "back_and_forth", strlen("back_and_forth")) == 0)
continue;
if (*target == '"')
target++;