aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-09-21 14:56:03 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-09-21 14:56:03 +0000
commit6b37b2d79d2fcf3af4d086272facebb0bb9c2df2 (patch)
treed3c8208ddb54fff7fdf3a801c94701deefa8f833 /tmux.h
parente3c3d746f7e78e5327627bed665a98e72d874774 (diff)
downloadrtmux-6b37b2d79d2fcf3af4d086272facebb0bb9c2df2.tar.gz
rtmux-6b37b2d79d2fcf3af4d086272facebb0bb9c2df2.tar.bz2
rtmux-6b37b2d79d2fcf3af4d086272facebb0bb9c2df2.zip
Use option print function for info messages as well.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index 3f804b72..e8e35ba1 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1159,10 +1159,11 @@ void options_free(struct options *);
struct options_entry *options_find1(struct options *, const char *);
struct options_entry *options_find(struct options *, const char *);
void options_remove(struct options *, const char *);
-void printflike3 options_set_string(
+struct options_entry *printflike3 options_set_string(
struct options *, const char *, const char *, ...);
char *options_get_string(struct options *, const char *);
-void options_set_number(struct options *, const char *, long long);
+struct options_entry *options_set_number(
+ struct options *, const char *, long long);
long long options_get_number(struct options *, const char *);
/* environ.c */