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-show-options.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-show-options.c')
-rw-r--r-- | usr.bin/tmux/cmd-show-options.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/cmd-show-options.c b/usr.bin/tmux/cmd-show-options.c index 1d953e3155b..cfb33c70dc7 100644 --- a/usr.bin/tmux/cmd-show-options.c +++ b/usr.bin/tmux/cmd-show-options.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-show-options.c,v 1.32 2016/10/10 21:51:39 nicm Exp $ */ +/* $OpenBSD: cmd-show-options.c,v 1.33 2016/10/14 22:14:22 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -43,7 +43,7 @@ const struct cmd_entry cmd_show_options_entry = { .tflag = CMD_WINDOW_CANFAIL, - .flags = 0, + .flags = CMD_AFTERHOOK, .exec = cmd_show_options_exec }; @@ -56,7 +56,7 @@ const struct cmd_entry cmd_show_window_options_entry = { .tflag = CMD_WINDOW_CANFAIL, - .flags = 0, + .flags = CMD_AFTERHOOK, .exec = cmd_show_options_exec }; |