diff options
author | Thomas Adam <thomas@xteddy.org> | 2020-03-31 20:01:34 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2020-03-31 20:01:34 +0100 |
commit | dfd29977e0ab289615eae0b4275763a3082bda24 (patch) | |
tree | 9e1753f4e3748cddfce46356d57044fe7ba49bf0 /tmux.h | |
parent | 0bb1a50b88ac319e8f499fa95500f373123594d1 (diff) | |
parent | cc8b41f294974cdfb1ddfe3b907da58374ff130f (diff) | |
download | rtmux-dfd29977e0ab289615eae0b4275763a3082bda24.tar.gz rtmux-dfd29977e0ab289615eae0b4275763a3082bda24.tar.bz2 rtmux-dfd29977e0ab289615eae0b4275763a3082bda24.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -929,7 +929,9 @@ struct window_pane { TAILQ_HEAD (, window_mode_entry) modes; struct event modetimer; time_t modelast; + char *searchstr; + int searchregex; TAILQ_ENTRY(window_pane) entry; RB_ENTRY(window_pane) tree_entry; @@ -1048,6 +1050,9 @@ struct environ_entry { char *name; char *value; + int flags; +#define ENVIRON_HIDDEN 0x1 + RB_ENTRY(environ_entry) entry; }; @@ -1957,10 +1962,10 @@ struct environ_entry *environ_first(struct environ *); struct environ_entry *environ_next(struct environ_entry *); void environ_copy(struct environ *, struct environ *); struct environ_entry *environ_find(struct environ *, const char *); -void printflike(3, 4) environ_set(struct environ *, const char *, const char *, - ...); +void printflike(4, 5) environ_set(struct environ *, const char *, int, + const char *, ...); void environ_clear(struct environ *, const char *); -void environ_put(struct environ *, const char *); +void environ_put(struct environ *, const char *, int); void environ_unset(struct environ *, const char *); void environ_update(struct options *, struct environ *, struct environ *); void environ_push(struct environ *); |