diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2011-05-09 09:49:08 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2011-05-09 09:49:08 +0000 |
| commit | d89361739acdf07f0b0775c85f69abe89d57b600 (patch) | |
| tree | ded652c4758d749b718d72491a95f9f2acdf427d /Src/exec.c | |
| parent | users/15986: handle EINTR in zccmd_input (diff) | |
| download | zsh-d89361739acdf07f0b0775c85f69abe89d57b600.tar zsh-d89361739acdf07f0b0775c85f69abe89d57b600.tar.gz zsh-d89361739acdf07f0b0775c85f69abe89d57b600.tar.bz2 zsh-d89361739acdf07f0b0775c85f69abe89d57b600.tar.lz zsh-d89361739acdf07f0b0775c85f69abe89d57b600.tar.xz zsh-d89361739acdf07f0b0775c85f69abe89d57b600.tar.zst zsh-d89361739acdf07f0b0775c85f69abe89d57b600.zip | |
29165: use term.h globally if needed at all.
Diffstat (limited to 'Src/exec.c')
| -rw-r--r-- | Src/exec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Src/exec.c b/Src/exec.c index a06f2f3ac..df0101853 100644 --- a/Src/exec.c +++ b/Src/exec.c @@ -4398,7 +4398,7 @@ loadautofn(Shfunc shf, int fksh, int autol) mod_export int doshfunc(Shfunc shfunc, LinkList doshargs, int noreturnval) { - char **tab, **x, *oargv0; + char **pptab, **x, *oargv0; int oldzoptind, oldlastval, oldoptcind, oldnumpipestats, ret; int *oldpipestats = NULL; char saveopts[OPT_SIZE], *oldscriptname = scriptname; @@ -4432,7 +4432,7 @@ doshfunc(Shfunc shfunc, LinkList doshargs, int noreturnval) starttrapscope(); - tab = pparams; + pptab = pparams; if (!(flags & PM_UNDEFINED)) scriptname = dupstring(name); oldzoptind = zoptind; @@ -4548,7 +4548,7 @@ doshfunc(Shfunc shfunc, LinkList doshargs, int noreturnval) zsfree(argzero); argzero = oargv0; } - pparams = tab; + pparams = pptab; optcind = oldoptcind; zoptind = oldzoptind; scriptname = oldscriptname; |
