diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-04-17 07:55:44 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-04-17 07:55:44 +0000 |
commit | db2bd58b5fe5db5cc4a73ffb18581222b8e57da1 (patch) | |
tree | fc3016d4458ad97b28181770030bd2418ed2885a /usr.bin/tmux/options-table.c | |
parent | 0afcc9d23eaaa22377b2f9ff5567e6f14cc3bce6 (diff) |
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 'usr.bin/tmux/options-table.c')
-rw-r--r-- | usr.bin/tmux/options-table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/options-table.c b/usr.bin/tmux/options-table.c index 5d90c20239d..3209ca5d253 100644 --- a/usr.bin/tmux/options-table.c +++ b/usr.bin/tmux/options-table.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options-table.c,v 1.47 2014/04/17 07:36:45 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.48 2014/04/17 07:55:43 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicm@users.sourceforge.net> @@ -90,7 +90,7 @@ const struct options_table_entry server_options_table[] = { { .name = "quiet", .type = OPTIONS_TABLE_FLAG, - .default_num = 0 /* overridden in main() */ + .default_num = 0 }, { .name = "set-clipboard", |