diff options
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index a25d14de0..90496ba7e 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -12602,7 +12602,7 @@ parsesub: { | |||
12602 | do { | 12602 | do { |
12603 | STPUTC(c, out); | 12603 | STPUTC(c, out); |
12604 | c = pgetc_eatbnl(); | 12604 | c = pgetc_eatbnl(); |
12605 | } while (isdigit(c)); | 12605 | } while (!subtype && isdigit(c)); |
12606 | } else if (c != '}') { | 12606 | } else if (c != '}') { |
12607 | /* $[{[#]]<specialchar>[}] */ | 12607 | /* $[{[#]]<specialchar>[}] */ |
12608 | int cc = c; | 12608 | int cc = c; |