Skip to content

Commit ae339e9

Browse files
author
Chet Ramey
committed
Bash-4.3 patch 42
1 parent 2b3ca7e commit ae339e9

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

parse.y

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3708,6 +3708,8 @@ eof_error:
37083708
/*itrace("parse_comsub:%d: lex_inword -> 1 ch = `%c' (%d)", line_number, ch, __LINE__);*/
37093709
tflags |= LEX_INWORD;
37103710
lex_wlen = 0;
3711+
if (tflags & LEX_RESWDOK)
3712+
lex_rwlen = 0;
37113713
}
37123714
}
37133715

patchlevel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
2626
looks for to find the patch level (for the sccs version string). */
2727

28-
#define PATCHLEVEL 41
28+
#define PATCHLEVEL 42
2929

3030
#endif /* _PATCHLEVEL_H_ */

y.tab.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6020,6 +6020,8 @@ parse_comsub (qc, open, close, lenp, flags)
60206020
/*itrace("parse_comsub:%d: lex_inword -> 1 ch = `%c' (%d)", line_number, ch, __LINE__);*/
60216021
tflags |= LEX_INWORD;
60226022
lex_wlen = 0;
6023+
if (tflags & LEX_RESWDOK)
6024+
lex_rwlen = 0;
60236025
}
60246026
}
60256027

0 commit comments

Comments
 (0)