mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
1dac0041d5
The fix for #2075 inadvertently started unescaping the strings emitted from `commandline -b`. Only strings emitted with the `-o` flag are supposed to be unescaped. Fixes #2210.
8 lines
97 B
Text
8 lines
97 B
Text
a:
|
|
echo \en one "two three" four'five six'{7} 'eight
|
|
b:
|
|
echo
|
|
one
|
|
two three
|
|
fourfive six{7}
|
|
eight
|