summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2013-03-21 16:15:53 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2013-03-21 16:15:53 +0000
commit0ae5f147d915b5047a3711e505d37b2771200bba (patch)
treeeea8f8cff54048b754ff02b72b9b2fbc1ca05bd5 /usr.bin/tmux/tmux.h
parent0f6af9b309a721a449999dd82b632cd320d8093b (diff)
Add -v to set and setw to show only option value.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r--usr.bin/tmux/tmux.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h
index 67975bde0a4..fc07a636688 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.378 2013/03/21 16:12:10 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.379 2013/03/21 16:15:52 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1572,12 +1572,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 */