From ed971268be7cfd5a4a8223211401654b30a57cbd Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 14 Oct 2016 22:14:22 +0000 Subject: Add CMD_AFTERHOOK flag to the easy commands that don't need any special handling. --- cmd-set-option.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd-set-option.c') diff --git a/cmd-set-option.c b/cmd-set-option.c index 8f7e469c..0c092e50 100644 --- a/cmd-set-option.c +++ b/cmd-set-option.c @@ -73,7 +73,7 @@ const struct cmd_entry cmd_set_option_entry = { .tflag = CMD_WINDOW_CANFAIL, - .flags = 0, + .flags = CMD_AFTERHOOK, .exec = cmd_set_option_exec }; @@ -86,7 +86,7 @@ const struct cmd_entry cmd_set_window_option_entry = { .tflag = CMD_WINDOW_CANFAIL, - .flags = 0, + .flags = CMD_AFTERHOOK, .exec = cmd_set_option_exec }; -- cgit