diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2011-07-28 09:20:02 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2011-07-28 09:20:02 +0000 |
| commit | 7d1480af54e95e5a2165e8bb69937a6b0a1dc50a (patch) | |
| tree | 3ee740a9a191fe330237b384f09ecdfbc69a6c6b /Src/parse.c | |
| parent | 29602 etc. etc.: description of filename extension (diff) | |
| download | zsh-7d1480af54e95e5a2165e8bb69937a6b0a1dc50a.tar zsh-7d1480af54e95e5a2165e8bb69937a6b0a1dc50a.tar.gz zsh-7d1480af54e95e5a2165e8bb69937a6b0a1dc50a.tar.bz2 zsh-7d1480af54e95e5a2165e8bb69937a6b0a1dc50a.tar.lz zsh-7d1480af54e95e5a2165e8bb69937a6b0a1dc50a.tar.xz zsh-7d1480af54e95e5a2165e8bb69937a6b0a1dc50a.tar.zst zsh-7d1480af54e95e5a2165e8bb69937a6b0a1dc50a.zip | |
29626: arguments to anonymous functions shouldn't be parsed as command words
Diffstat (limited to 'Src/parse.c')
| -rw-r--r-- | Src/parse.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/parse.c b/Src/parse.c index 5b6f09949..5b8f0af48 100644 --- a/Src/parse.c +++ b/Src/parse.c @@ -1465,6 +1465,7 @@ par_funcdef(void) ecssub = oecssub; YYERRORV(oecused); } + incmdpos = 0; zshlex(); } else if (unset(SHORTLOOPS)) { lineno += oldlineno; @@ -1720,6 +1721,7 @@ par_simple(int *complex, int nr) ecssub = oecssub; YYERROR(oecused); } + incmdpos = 0; zshlex(); } else { int ll, sl, c = 0; |
