diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-04-06 21:59:19 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-04-06 21:59:19 +0000 |
commit | 0fc65537a3e103ef0658234cdfa1339160b2a18d (patch) | |
tree | edc2e38ae6c805d415cef5133d2a0dddca81fbfd /tmux.h | |
parent | 091db41bc9d178524c22465f744f59f8de9ce7f4 (diff) | |
download | rtmux-0fc65537a3e103ef0658234cdfa1339160b2a18d.tar.gz rtmux-0fc65537a3e103ef0658234cdfa1339160b2a18d.tar.bz2 rtmux-0fc65537a3e103ef0658234cdfa1339160b2a18d.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 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.554 2010-04-06 21:58:33 nicm Exp $ */ +/* $Id: tmux.h,v 1.555 2010-04-06 21:59:19 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 *); |