aboutsummaryrefslogtreecommitdiff
path: root/src/lj_strscan.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Bump copyright date.Mike Pall2025-01-131-1/+1
|
* Bump copyright date.Mike Pall2023-08-201-1/+1
|
* Avoid negation of signed integers in C that may hold INT*_MIN.Mike Pall2022-12-221-10/+10
| | | | | | Reported by minoki. Recent C compilers 'take advantage' of the undefined behavior. This completely changes the meaning of expressions like (k == -k).
* Bump copyright date.Mike Pall2022-01-151-1/+1
|
* Limit exponent range in number parsing.Mike Pall2022-01-131-1/+4
| | | | Reported by XmiliaH.
* Fix tonumber("-0") in dual-number mode.Mike Pall2022-01-131-2/+6
| | | | Reported by Sergey Kaplun.
* Bump copyright date.Mike Pall2021-01-021-1/+1
|
* Bump copyright date.Mike Pall2020-01-201-1/+1
|
* Fix tonumber("-0").Mike Pall2019-12-081-3/+2
| | | | Reported by bluecheetah001.
* Bump copyright date to 2017.Mike Pall2017-01-171-1/+1
|
* Bump copyright date to 2016.Mike Pall2016-03-031-1/+1
|
* Fix string to number conversion.Mike Pall2015-02-221-1/+1
| | | | Thanks to Lesley De Cruz.
* Bump copyright date to 2015.Mike Pall2015-01-051-1/+1
|
* Fix corner case in string to number conversion.Mike Pall2014-12-271-3/+4
|
* Bump copyright date to 2014.Mike Pall2014-01-161-1/+1
|
* Fix builtin string to number conversion for overflow digits.Mike Pall2013-04-291-2/+3
|
* Bump copyright date to 2013.Mike Pall2013-02-111-1/+1
|
* Fix builtin string to number conversion for INT_MIN.Mike Pall2012-10-241-11/+10
|
* Fix underflow handling in builtin string to number conversion.Mike Pall2012-08-271-1/+1
|
* Replace strtod() with builtin string to number conversion.Mike Pall2012-08-251-0/+497