mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 19:19:58 +08:00
parent
f854e3dc29
commit
962bfa9668
|
@ -548,6 +548,10 @@ wcstring parse_util_escape_string_with_quote(const wcstring &cmd, wchar_t quote,
|
|||
case L'\\':
|
||||
result.append({L'\\', L'\\'});
|
||||
break;
|
||||
case L'$':
|
||||
if (quote == L'"') result.push_back(L'\\');
|
||||
result.push_back(L'$');
|
||||
break;
|
||||
default:
|
||||
if (c == quote) result.push_back(L'\\');
|
||||
result.push_back(c);
|
||||
|
|
Loading…
Reference in New Issue
Block a user