aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2017-01-13 14:01:13 +0000
committerThomas Adam <thomas@xteddy.org>2017-01-13 14:01:13 +0000
commit780dd7ac823215f1c3a468816db18ab745b22d49 (patch)
tree9e57b7b042c5dac2c1df03f07e5acd6464519b83 /tmux.h
parent2311bbd28a227a8b6e6e52bf30665b37315cad11 (diff)
parent08d21936e4559a92174361d7785ca3e967972edb (diff)
downloadrtmux-780dd7ac823215f1c3a468816db18ab745b22d49.tar.gz
rtmux-780dd7ac823215f1c3a468816db18ab745b22d49.tar.bz2
rtmux-780dd7ac823215f1c3a468816db18ab745b22d49.zip
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index e04ab771..6a925ebc 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1632,13 +1632,13 @@ struct options_entry *options_find(struct options *, const char *);
void options_remove(struct options *, 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 *);
+const 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 *, int,
const char *);
-struct grid_cell *options_get_style(struct options *, const char *);
+const struct grid_cell *options_get_style(struct options *, const char *);
/* options-table.c */
extern const struct options_table_entry options_table[];