diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-11-16 11:19:06 -0200 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-11-16 11:19:06 -0200 |
| commit | e4e5aa85a24bba6c243aeeaedc66ec712856c6db (patch) | |
| tree | f2a4333254eb0e8ed7691d9110ff568d3bd6ec61 /lbaselib.c | |
| parent | 4c0e36a46e11be2f101203ed0db66ea750bf4333 (diff) | |
| download | lua-e4e5aa85a24bba6c243aeeaedc66ec712856c6db.tar.gz lua-e4e5aa85a24bba6c243aeeaedc66ec712856c6db.tar.bz2 lua-e4e5aa85a24bba6c243aeeaedc66ec712856c6db.zip | |
detail ('signal' -> 'sign' in comments)
Diffstat (limited to 'lbaselib.c')
| -rw-r--r-- | lbaselib.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lbaselib.c,v 1.316 2017/05/26 19:14:29 roberto Exp roberto $ | 2 | ** $Id: lbaselib.c,v 1.317 2017/06/27 18:32:49 roberto Exp roberto $ |
| 3 | ** Basic library | 3 | ** Basic library |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| @@ -49,7 +49,7 @@ static const char *b_str2int (const char *s, int base, lua_Integer *pn) { | |||
| 49 | lua_Unsigned n = 0; | 49 | lua_Unsigned n = 0; |
| 50 | int neg = 0; | 50 | int neg = 0; |
| 51 | s += strspn(s, SPACECHARS); /* skip initial spaces */ | 51 | s += strspn(s, SPACECHARS); /* skip initial spaces */ |
| 52 | if (*s == '-') { s++; neg = 1; } /* handle signal */ | 52 | if (*s == '-') { s++; neg = 1; } /* handle sign */ |
| 53 | else if (*s == '+') s++; | 53 | else if (*s == '+') s++; |
| 54 | if (!isalnum((unsigned char)*s)) /* no digit? */ | 54 | if (!isalnum((unsigned char)*s)) /* no digit? */ |
| 55 | return NULL; | 55 | return NULL; |
