-
-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error with backslashes in unquoted variables with globbing off #698
Comments
OK thanks, this is also #628 with a slightly different repro, need to fix this! Although I hope I don't have to rewrite too much code to do it. |
I technically fixed this specific case, although there are some other bugs in this area and code needs a lot of work in general (see commit description) |
Yes, this still isn't enough for #679: $ var='\e'
$ set -f
$ echo $var
\e osh$ var='\e'
osh$ set -f
osh$ echo $var
e |
Bug #698. The nested 'else' case was messed up! Gah.
Actually I fixed this without doing the big refactoring I was afraid of! woohoo |
Great! Not sure if there are some cornercases where it doesn't work without #701 resolved, but it now runs on my machine with some upstreamable patches! I've opened a PR: dylanaraps/neofetch#1442 |
Awesome, thanks for sending the patch! I was about to check see what was left in the patch but you beat me to it :) |
Required for #679.
The text was updated successfully, but these errors were encountered: