diff options
author | nicm <nicm> | 2014-04-17 07:55:43 +0000 |
---|---|---|
committer | nicm <nicm> | 2014-04-17 07:55:43 +0000 |
commit | 2740490e279bac7b01f18cc39aa59a5de09e3a95 (patch) | |
tree | 664689226d287ee21d97062c53fc1ef17464dda1 /cmd-select-layout.c | |
parent | 877bdb46ed91580a3a4c430bc8c550314301352a (diff) | |
download | rtmux-2740490e279bac7b01f18cc39aa59a5de09e3a95.tar.gz rtmux-2740490e279bac7b01f18cc39aa59a5de09e3a95.tar.bz2 rtmux-2740490e279bac7b01f18cc39aa59a5de09e3a95.zip |
Remove the "info" message mechanism, this was only used for about five
mostly useless and annoying messages. Change those commands to silence
on success like all the others. Still accept the -q command line flag
and "quiet" server option for now.
Diffstat (limited to 'cmd-select-layout.c')
-rw-r--r-- | cmd-select-layout.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cmd-select-layout.c b/cmd-select-layout.c index 26d8538e..a5f5519c 100644 --- a/cmd-select-layout.c +++ b/cmd-select-layout.c @@ -104,7 +104,6 @@ cmd_select_layout_exec(struct cmd *self, struct cmd_q *cmdq) else layout = layout_set_previous(wl->window); server_redraw_window(wl->window); - cmdq_info(cmdq, "arranging in: %s", layout_set_name(layout)); return (CMD_RETURN_NORMAL); } @@ -115,7 +114,6 @@ cmd_select_layout_exec(struct cmd *self, struct cmd_q *cmdq) if (layout != -1) { layout = layout_set_select(wl->window, layout); server_redraw_window(wl->window); - cmdq_info(cmdq, "arranging in: %s", layout_set_name(layout)); return (CMD_RETURN_NORMAL); } @@ -126,7 +124,6 @@ cmd_select_layout_exec(struct cmd *self, struct cmd_q *cmdq) return (CMD_RETURN_ERROR); } server_redraw_window(wl->window); - cmdq_info(cmdq, "arranging in: %s", layoutname); } return (CMD_RETURN_NORMAL); } |