mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 21:33:09 +00:00
parsing numbers imho better uses + rather than |
This commit is contained in:
parent
808fac9b14
commit
1ae0e5d7cb
1 changed files with 1 additions and 1 deletions
|
@ -1266,7 +1266,7 @@ wchar_t *unescape(const wchar_t * orig, int flags)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
res=(res*base)|d;
|
res=(res*base)+d;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((res <= max_val))
|
if ((res <= max_val))
|
||||||
|
|
Loading…
Reference in a new issue