mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-01 17:56:15 +08:00
Remove spurious character escape
This commit is contained in:
parent
1c20bdcbf9
commit
4908f9bb40
|
@ -119,7 +119,7 @@ static int parse_util_locate_brackets_of_type(const wchar_t *in, wchar_t **begin
|
|||
|
||||
for (pos = const_cast<wchar_t *>(in); *pos; pos++) {
|
||||
if (!escaped) {
|
||||
if (std::wcschr(L"\'\"", *pos)) {
|
||||
if (std::wcschr(L"'\"", *pos)) {
|
||||
wchar_t *q_end = quote_end(pos);
|
||||
if (q_end && *q_end) {
|
||||
pos = q_end;
|
||||
|
|
Loading…
Reference in New Issue
Block a user