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-list-windows.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-list-windows.c')
-rw-r--r-- | usr.bin/tmux/cmd-list-windows.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-list-windows.c b/usr.bin/tmux/cmd-list-windows.c index 7a46ce7c1ce..adac28041ec 100644 --- a/usr.bin/tmux/cmd-list-windows.c +++ b/usr.bin/tmux/cmd-list-windows.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-list-windows.c,v 1.38 2016/10/10 21:51:39 nicm Exp $ */ +/* $OpenBSD: cmd-list-windows.c,v 1.39 2016/10/14 22:14:22 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -54,7 +54,7 @@ const struct cmd_entry cmd_list_windows_entry = { .tflag = CMD_SESSION, - .flags = 0, + .flags = CMD_AFTERHOOK, .exec = cmd_list_windows_exec }; |