diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2016-10-14 22:14:23 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2016-10-14 22:14:23 +0000 |
commit | 7a01d0fd7a51152adf7bf9c41b69f4e1810846a7 (patch) | |
tree | 49d01266139f4b1abc026283b682ea1d04c54269 /usr.bin/tmux/cmd-string.c | |
parent | 7208db85bf9d1098e9186149a922dfec263938e1 (diff) |
Add CMD_AFTERHOOK flag to the easy commands that don't need any special handling.
Diffstat (limited to 'usr.bin/tmux/cmd-string.c')
-rw-r--r-- | usr.bin/tmux/cmd-string.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-string.c b/usr.bin/tmux/cmd-string.c index 7876d5d740b..bfed0d44ed1 100644 --- a/usr.bin/tmux/cmd-string.c +++ b/usr.bin/tmux/cmd-string.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-string.c,v 1.23 2016/10/10 21:51:39 nicm Exp $ */ +/* $OpenBSD: cmd-string.c,v 1.24 2016/10/14 22:14:22 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -133,7 +133,8 @@ cmd_string_parse(const char *s, struct cmd_list **cmdlist, const char *file, if (argc == 0) goto out; - *cmdlist = cmd_list_parse(argc, argv, file, line, cause); + *cmdlist = cmd_list_parse(argc, argv, file, line, + cause); if (*cmdlist == NULL) goto out; |