diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-09-22 13:59:46 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-09-22 13:59:46 +0000 |
commit | 59e65cbda27e49b90aab48d13aa8036303cd6679 (patch) | |
tree | a1c2ee3a3eaac1ced524089e32f1dbfb0fd5c421 /tmux.h | |
parent | 649b7c132d3a83cc7e67742d38d9e74c5cfae9ac (diff) | |
download | rtmux-59e65cbda27e49b90aab48d13aa8036303cd6679.tar.gz rtmux-59e65cbda27e49b90aab48d13aa8036303cd6679.tar.bz2 rtmux-59e65cbda27e49b90aab48d13aa8036303cd6679.zip |
Sync OpenBSD patchset 340:
Use option print function for info messages as well.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.448 2009-09-22 13:56:02 tcunha Exp $ */ +/* $Id: tmux.h,v 1.449 2009-09-22 13:59:46 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1157,10 +1157,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 */ |