=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/Attic/window-choose.c,v retrieving revision 1.83 retrieving revision 1.84 diff -c -r1.83 -r1.84 *** src/usr.bin/tmux/Attic/window-choose.c 2017/01/07 15:28:13 1.83 --- src/usr.bin/tmux/Attic/window-choose.c 2017/01/15 22:00:56 1.84 *************** *** 1,4 **** ! /* $OpenBSD: window-choose.c,v 1.83 2017/01/07 15:28:13 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: window-choose.c,v 1.84 2017/01/15 22:00:56 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott *************** *** 255,261 **** if (cdata->command == NULL) return; ! if (cmd_string_parse(cdata->command, &cmdlist, NULL, 0, &cause) != 0) { if (cause != NULL) { *cause = toupper((u_char) *cause); status_message_set(cdata->start_client, "%s", cause); --- 255,262 ---- if (cdata->command == NULL) return; ! cmdlist = cmd_string_parse(cdata->command, NULL, 0, &cause); ! if (cmdlist == NULL) { if (cause != NULL) { *cause = toupper((u_char) *cause); status_message_set(cdata->start_client, "%s", cause);