diff options
author | nicm <nicm> | 2016-10-14 22:14:22 +0000 |
---|---|---|
committer | nicm <nicm> | 2016-10-14 22:14:22 +0000 |
commit | ed971268be7cfd5a4a8223211401654b30a57cbd (patch) | |
tree | ced6a43b231a88614d2419c9b16b8dc914e82b61 /cmd-list-buffers.c | |
parent | d413a945acd9ffbc5d34a4d459b82721e648541d (diff) | |
download | rtmux-ed971268be7cfd5a4a8223211401654b30a57cbd.tar.gz rtmux-ed971268be7cfd5a4a8223211401654b30a57cbd.tar.bz2 rtmux-ed971268be7cfd5a4a8223211401654b30a57cbd.zip |
Add CMD_AFTERHOOK flag to the easy commands that don't need any special handling.
Diffstat (limited to 'cmd-list-buffers.c')
-rw-r--r-- | cmd-list-buffers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-list-buffers.c b/cmd-list-buffers.c index 41ad865b..f474b398 100644 --- a/cmd-list-buffers.c +++ b/cmd-list-buffers.c @@ -39,7 +39,7 @@ const struct cmd_entry cmd_list_buffers_entry = { .args = { "F:", 0, 0 }, .usage = "[-F format]", - .flags = 0, + .flags = CMD_AFTERHOOK, .exec = cmd_list_buffers_exec }; |