diff options
author | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-03-16 09:45:50 +0100 |
---|---|---|
committer | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-03-16 15:10:30 +0100 |
commit | 4161f6756dadef6cd5a5c2e1e75804122e892949 (patch) | |
tree | f229a3b3fee394fe9cc2c8a977196d62c09132e7 /src/lobject.js | |
parent | 8388f1d2eb85bfc5fdbe1cfeb62e85a7d88403b5 (diff) | |
download | fengari-4161f6756dadef6cd5a5c2e1e75804122e892949.tar.gz fengari-4161f6756dadef6cd5a5c2e1e75804122e892949.tar.bz2 fengari-4161f6756dadef6cd5a5c2e1e75804122e892949.zip |
string.format
Diffstat (limited to 'src/lobject.js')
-rw-r--r-- | src/lobject.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lobject.js b/src/lobject.js index 556da08..719d7a6 100644 --- a/src/lobject.js +++ b/src/lobject.js @@ -360,7 +360,7 @@ const l_str2int = function(s) { s = s.slice(2); /* skip '0x' */ for (; ljstype.lisxdigit(s[0]); s = s.slice(1)) { - a = a * 16 + luaO_hexavalue(s); + a = a * 16 + luaO_hexavalue(s[0]); empty = false; } } else { /* decimal */ |