diff options
author | Nalin Dahyabhai <nalin@src.gnome.org> | 2002-03-04 02:57:53 +0000 |
---|---|---|
committer | Nalin Dahyabhai <nalin@src.gnome.org> | 2002-03-04 02:57:53 +0000 |
commit | d28784479bb8600b64f13f902df2aff3eed22a67 (patch) | |
tree | 4192c5830260bcd0cee404804ad7e693dc74689c /src/pty.h | |
parent | fa1f908159070fbf22e2d2bdd550328e8fe9767b (diff) |
Properly differentiate insertion delta (working screen) from scrolling delta.
Add environment setting to the pty code.
Diffstat (limited to 'src/pty.h')
-rw-r--r-- | src/pty.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -28,7 +28,8 @@ G_BEGIN_DECLS /* Start up the given binary (exact path, not interpreted at all) in a * pseudo-terminal of its own, returning the descriptor for the master * side of the PTY pair, storing the child's PID in the given argument. */ -int vte_pty_open(pid_t *child, const char *command); +int vte_pty_open(pid_t *child, const char **env_add, + const char *command, const char **argv); G_END_DECLS |