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 13eeab34b..da9c95045 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -11500,7 +11500,7 @@ parsesub: { | |||
11500 | || (c != '(' && c != '{' && !is_name(c) && !is_special(c)) | 11500 | || (c != '(' && c != '{' && !is_name(c) && !is_special(c)) |
11501 | ) { | 11501 | ) { |
11502 | #if ENABLE_ASH_BASH_COMPAT | 11502 | #if ENABLE_ASH_BASH_COMPAT |
11503 | if (c == '\'') | 11503 | if (syntax != DQSYNTAX && c == '\'') |
11504 | bash_dollar_squote = 1; | 11504 | bash_dollar_squote = 1; |
11505 | else | 11505 | else |
11506 | #endif | 11506 | #endif |