From 0fc65537a3e103ef0658234cdfa1339160b2a18d Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 6 Apr 2010 21:59:19 +0000 Subject: Run job commands explicitly in the global enviroment (which can be modified with setenv -g) rather than with the environment tmux started with. --- tmux.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 64490a67..da760776 100644 --- a/tmux.h +++ b/tmux.h @@ -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 @@ -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 *); -- cgit