diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2001-07-09 16:05:13 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2001-07-09 16:05:13 +0000 |
| commit | 003ec8c7e8814221b366e95dc4ea24fa4cf1e99c (patch) | |
| tree | 2c21af1f7bef690ea3ef00a2011f0eb74334d12b /Src/Modules/zpty.c | |
| parent | 15304,15305,15308 (diff) | |
| download | zsh-003ec8c7e8814221b366e95dc4ea24fa4cf1e99c.tar zsh-003ec8c7e8814221b366e95dc4ea24fa4cf1e99c.tar.gz zsh-003ec8c7e8814221b366e95dc4ea24fa4cf1e99c.tar.bz2 zsh-003ec8c7e8814221b366e95dc4ea24fa4cf1e99c.tar.lz zsh-003ec8c7e8814221b366e95dc4ea24fa4cf1e99c.tar.xz zsh-003ec8c7e8814221b366e95dc4ea24fa4cf1e99c.tar.zst zsh-003ec8c7e8814221b366e95dc4ea24fa4cf1e99c.zip | |
15327: always use local LINENOs in parse_string().
Diffstat (limited to 'Src/Modules/zpty.c')
| -rw-r--r-- | Src/Modules/zpty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Modules/zpty.c b/Src/Modules/zpty.c index 80deba786..7ab31cfb4 100644 --- a/Src/Modules/zpty.c +++ b/Src/Modules/zpty.c @@ -276,7 +276,7 @@ newptycmd(char *nam, char *pname, char **args, int echo, int nblock) int master, slave, pid; Eprog prog; - prog = parse_string(zjoin(args, ' ', 1), 0); + prog = parse_string(zjoin(args, ' ', 1)); if (!prog) { errflag = 0; return 1; |
