mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-22 03:51:15 -03:00
parsing numbers imho better uses + rather than |
This commit is contained in:
@@ -1266,7 +1266,7 @@ wchar_t *unescape(const wchar_t * orig, int flags)
|
||||
break;
|
||||
}
|
||||
|
||||
res=(res*base)|d;
|
||||
res=(res*base)+d;
|
||||
}
|
||||
|
||||
if ((res <= max_val))
|
||||
|
||||
Reference in New Issue
Block a user