diff options
author | Thomas Adam <thomas@xteddy.org> | 2017-01-12 16:01:13 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2017-01-12 16:01:13 +0000 |
commit | d4cb178249c6c73c6197e34e871c2b8e803de175 (patch) | |
tree | b2cb82d18531f6b075f28f80d0a30756c6c9567d /tmux.h | |
parent | 1eb9500644f058113c0b108a049e05efda5e3436 (diff) | |
parent | 24cba5907b5006363ac7f83f31801153f9c23b37 (diff) | |
download | rtmux-d4cb178249c6c73c6197e34e871c2b8e803de175.tar.gz rtmux-d4cb178249c6c73c6197e34e871c2b8e803de175.tar.bz2 rtmux-d4cb178249c6c73c6197e34e871c2b8e803de175.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1629,14 +1629,14 @@ struct options_entry *options_next(struct options_entry *); 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 *); -struct options_entry *printflike(3, 4) options_set_string(struct options *, - const char *, const char *, ...); +struct options_entry * printflike(4, 5) options_set_string(struct options *, + const char *, int, const char *, ...); char *options_get_string(struct options *, const char *); struct options_entry *options_set_number(struct options *, const char *, long long); long long options_get_number(struct options *, const char *); -struct options_entry *options_set_style(struct options *, const char *, - const char *, int); +struct options_entry *options_set_style(struct options *, const char *, int, + const char *); struct grid_cell *options_get_style(struct options *, const char *); /* options-table.c */ |