You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Required for #679. I haven't checked any manuals, but I think that backslashes in quoted + parameter expansion should only be interpreted if preceding a special character.
$ echo"${#:+\$}"
$
$ echo"${#:+\e}"\e
osh$ echo "${#:+\$}"
$
osh$ echo "${#:+\e}"
e
The text was updated successfully, but these errors were encountered:
- Fixes#698
- Fixes fallout from #695 (failing test in spec/var-sub-quote)
There is still a different failing test case to remind us to overhaul
this code. And we still need to fix issue #291 too.
This area of the code needs a bunch of work.
Required for #679. I haven't checked any manuals, but I think that backslashes in quoted + parameter expansion should only be interpreted if preceding a special character.
The text was updated successfully, but these errors were encountered: