diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2009-02-25 10:23:58 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2009-02-25 10:23:58 +0000 |
commit | 10182c766bf6096ab2ffc25ba73babe6955dff0a (patch) | |
tree | 17537e4e4b81a91507265b176e0b6dd8eae04aee /Src/builtin.c | |
parent | 3b3ff37cc5550b0e71f2c8ddf49d61e8bbed1d9b (diff) | |
download | zsh-10182c766bf6096ab2ffc25ba73babe6955dff0a.tar.gz zsh-10182c766bf6096ab2ffc25ba73babe6955dff0a.tar.xz zsh-10182c766bf6096ab2ffc25ba73babe6955dff0a.zip |
c.f. 26586: rename yylex to zshlex and yytext to zshlextext
Diffstat (limited to 'Src/builtin.c')
-rw-r--r-- | Src/builtin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/builtin.c b/Src/builtin.c index b402d56e2..c1509759a 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -5780,7 +5780,7 @@ bin_test(char *name, char **argv, UNUSED(Options ops), int func) condlex = testlex; testlex(); prog = parse_cond(); - condlex = yylex; + condlex = zshlex; if (errflag) { errflag = 0; |