diff options
author | 2010-04-04 19:02:09 +0000 | |
---|---|---|
committer | 2010-04-04 19:02:09 +0000 | |
commit | bcaf44938b37b906ddf924e68704aedf1e0334e6 (patch) | |
tree | b122afa70350f9c1eeb1e5b582cc9f17167d0ad3 /usr.bin/tmux/tmux.h | |
parent | Squash a function that is only called in a callback into the callback (diff) | |
download | wireguard-openbsd-bcaf44938b37b906ddf924e68704aedf1e0334e6.tar.xz wireguard-openbsd-bcaf44938b37b906ddf924e68704aedf1e0334e6.zip |
Run job commands explicitly in the global enviroment (which can be
modified with setenv -g) rather than with the environment tmux started
with.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 4b682c0de25..c2da7c63f3b 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.214 2010/04/04 18:48:37 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.215 2010/04/04 19:02:09 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1330,6 +1330,7 @@ void environ_set(struct environ *, const char *, const char *); void environ_put(struct environ *, const char *); void environ_unset(struct environ *, const char *); void environ_update(const char *, struct environ *, struct environ *); +void environ_push(struct environ *); /* tty.c */ void tty_raw(struct tty *, const char *); |