diff options
| author | Oliver Kiddle <opk@users.sourceforge.net> | 2004-03-11 14:25:12 +0000 |
|---|---|---|
| committer | Oliver Kiddle <opk@users.sourceforge.net> | 2004-03-11 14:25:12 +0000 |
| commit | 95231270ede1c8f915528cea08a2192ff45811cb (patch) | |
| tree | 14646c4e83b796af3507464979e51dc94b952beb /Src/parse.c | |
| parent | 19575: Fix problem with trap on EXIT overriding status (diff) | |
| download | zsh-95231270ede1c8f915528cea08a2192ff45811cb.tar zsh-95231270ede1c8f915528cea08a2192ff45811cb.tar.gz zsh-95231270ede1c8f915528cea08a2192ff45811cb.tar.bz2 zsh-95231270ede1c8f915528cea08a2192ff45811cb.tar.lz zsh-95231270ede1c8f915528cea08a2192ff45811cb.tar.xz zsh-95231270ede1c8f915528cea08a2192ff45811cb.tar.zst zsh-95231270ede1c8f915528cea08a2192ff45811cb.zip | |
19595: rename DO to DOLOOP to avoid conflict with curses.h on Tru64 5.1
Diffstat (limited to 'Src/parse.c')
| -rw-r--r-- | Src/parse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Src/parse.c b/Src/parse.c index b1c1d1594..9dd9a18eb 100644 --- a/Src/parse.c +++ b/Src/parse.c @@ -978,7 +978,7 @@ par_for(int *complex) incmdpos = 1; while (tok == SEPER) yylex(); - if (tok == DO) { + if (tok == DOLOOP) { yylex(); par_save_list(complex); if (tok != DONE) @@ -1260,7 +1260,7 @@ par_while(int *complex) incmdpos = 1; while (tok == SEPER) yylex(); - if (tok == DO) { + if (tok == DOLOOP) { yylex(); par_save_list(complex); if (tok != DONE) @@ -1304,7 +1304,7 @@ par_repeat(int *complex) yylex(); while (tok == SEPER) yylex(); - if (tok == DO) { + if (tok == DOLOOP) { yylex(); par_save_list(complex); if (tok != DONE) |
