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 a25d14d..90496ba 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -12602,7 +12602,7 @@ parsesub: { do { STPUTC(c, out); c = pgetc_eatbnl(); - } while (isdigit(c)); + } while (!subtype && isdigit(c)); } else if (c != '}') { /* $[{[#]]<specialchar>[}] */ int cc = c; |