diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-12 20:12:10 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-12 20:12:10 +0000 |
commit | 102cb7743545a1d86c53e7958fc56ec599ba0cd7 (patch) | |
tree | 5c349ff6a331dc3647b24216fb4bd2ca3e076dfa /tmux.h | |
parent | 7360ff4496bfd159ac5935a18de675f067c375db (diff) | |
download | rtmux-102cb7743545a1d86c53e7958fc56ec599ba0cd7.tar.gz rtmux-102cb7743545a1d86c53e7958fc56ec599ba0cd7.tar.bz2 rtmux-102cb7743545a1d86c53e7958fc56ec599ba0cd7.zip |
Add -v to set and setw to show only option value.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -1568,12 +1568,11 @@ long long options_get_number(struct options *, const char *); extern const struct options_table_entry server_options_table[]; extern const struct options_table_entry session_options_table[]; extern const struct options_table_entry window_options_table[]; -void options_table_populate_tree( - const struct options_table_entry *, struct options *); -const char *options_table_print_entry( - const struct options_table_entry *, struct options_entry *); -int options_table_find( - const char *, const struct options_table_entry **, +void options_table_populate_tree(const struct options_table_entry *, + struct options *); +const char *options_table_print_entry(const struct options_table_entry *, + struct options_entry *, int); +int options_table_find(const char *, const struct options_table_entry **, const struct options_table_entry **); /* job.c */ |