index
:
lua
master
v5-2
v5.3
v5.4
A mirror of https://github.com/lua/lua
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
llex.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
added support for UTF-8 escapes
Roberto Ierusalimschy
2014-02-04
1
-11
/
+45
*
simpler way to create messages for errors in escape sequences
Roberto Ierusalimschy
2014-01-31
1
-27
/
+31
*
first implementation of '<<', '>>', and '~' (bitwise not)
Roberto Ierusalimschy
2013-12-30
1
-6
/
+9
*
bug (GC can collect long identifier during parser) + change (using
Roberto Ierusalimschy
2013-08-30
1
-6
/
+9
*
"fixed" objects kept in a separated list (instead of being kept in
Roberto Ierusalimschy
2013-08-21
1
-4
/
+6
*
new constant 'MAX_SIZE', distinct from 'MAX_SIZET', for sizes visible
Roberto Ierusalimschy
2013-06-19
1
-2
/
+2
*
'luaO_str2int' more generic: accepts white spaces around the numeral
Roberto Ierusalimschy
2013-05-14
1
-2
/
+3
*
new operation '//' (integer division)
Roberto Ierusalimschy
2013-04-26
1
-2
/
+7
*
first implementation of literal integers (no constant folding yet)
Roberto Ierusalimschy
2013-04-16
1
-17
/
+30
*
typos in comments
Roberto Ierusalimschy
2013-03-16
1
-2
/
+2
*
added some comments
Roberto Ierusalimschy
2012-12-05
1
-4
/
+4
*
field 'reserved' -> 'extra' (may be used for other purposes too)
Roberto Ierusalimschy
2012-01-23
1
-4
/
+4
*
bug: Lexical gets confused with some combination of arithmetic
Roberto Ierusalimschy
2012-01-20
1
-5
/
+16
*
more uses of 'l_noret'
Roberto Ierusalimschy
2011-11-30
1
-4
/
+4
*
comments about use of 'luaH_set'
Roberto Ierusalimschy
2011-08-15
1
-1
/
+3
*
comment
Roberto Ierusalimschy
2011-08-11
1
-2
/
+2
*
no more 'luaH_setstr (used only once) + 'luaH_setint' receives value
Roberto Ierusalimschy
2011-08-09
1
-2
/
+2
*
no more 'zungetc' (better not to read next char)
Roberto Ierusalimschy
2011-07-15
1
-19
/
+19
*
better code for numerical escapes
Roberto Ierusalimschy
2011-07-15
1
-28
/
+19
*
detail
Roberto Ierusalimschy
2011-07-08
1
-4
/
+4
*
error on invalid escape sequences
Roberto Ierusalimschy
2011-07-08
1
-31
/
+38
*
detail (comment)
Roberto Ierusalimschy
2011-07-06
1
-2
/
+2
*
'\*' -> '\z' + '\?' is not an official escape sequence
Roberto Ierusalimschy
2011-07-05
1
-3
/
+3
*
label syntax changed to '::label::'
Roberto Ierusalimschy
2011-06-23
1
-2
/
+7
*
just in case, avoid side effects in 'ctype' macros
Roberto Ierusalimschy
2011-06-15
1
-15
/
+22
*
removed TOKEN_LEN (useless)
Roberto Ierusalimschy
2011-05-03
1
-2
/
+1
*
no need of lookahead in Zio
Roberto Ierusalimschy
2011-02-23
1
-3
/
+4
*
new reserved word 'goto'
Roberto Ierusalimschy
2011-02-02
1
-2
/
+2
*
detail (cleaning trailing spaces)
Roberto Ierusalimschy
2011-01-26
1
-3
/
+3
*
'hexafloat' moved to 'lobject.c' (hexa conversion needs it too)
Roberto Ierusalimschy
2010-12-10
1
-9
/
+2
*
detection of erroneous numeric strings with \0 (such as "1\0")
Roberto Ierusalimschy
2010-12-06
1
-3
/
+6
*
keep 'seminfo->ts' even for reserved words, just in case
Roberto Ierusalimschy
2010-11-18
1
-2
/
+2
*
comment
Roberto Ierusalimschy
2010-10-25
1
-2
/
+2
*
hexadecimal constants may be floating values too
Roberto Ierusalimschy
2010-09-13
1
-6
/
+4
*
name "_ENV" configurable through 'luaconf.h'
Roberto Ierusalimschy
2010-09-07
1
-2
/
+2
*
new escape sequence '\*' + several comments + moving options from
Roberto Ierusalimschy
2010-04-16
1
-42
/
+62
*
no need to keep "_ENV" name in global state (can be kept in lex state)
Roberto Ierusalimschy
2010-04-05
1
-1
/
+3
*
avoid 'continue' unless necessary
Roberto Ierusalimschy
2010-02-27
1
-8
/
+8
*
parser/scanner keep GC running
Roberto Ierusalimschy
2009-11-17
1
-2
/
+4
*
hexadecimal escape sequences in strings + better error messages for
Roberto Ierusalimschy
2009-05-18
1
-22
/
+55
*
ctype 'lalpha' includes '_' (as '_' behaves as a letter from the
Roberto Ierusalimschy
2009-03-11
1
-4
/
+4
*
Lua now uses "homemade" lctype (instead of ctype.h from ANSI C)
Roberto Ierusalimschy
2009-02-19
1
-13
/
+13
*
comment (should not use 'go trhough' when simply using multiple labels)
Roberto Ierusalimschy
2009-02-11
1
-2
/
+2
*
detail (MAXSRC changed to LUA_IDSIZE)
Roberto Ierusalimschy
2008-12-26
1
-6
/
+3
*
parser should not call 'luaX_lexerror'
Roberto Ierusalimschy
2007-10-25
1
-11
/
+14
*
better way to handle redefinitions of 'localeconv'
Roberto Ierusalimschy
2007-09-14
1
-3
/
+6
*
detail
Roberto Ierusalimschy
2007-08-09
1
-3
/
+3
*
details
Roberto Ierusalimschy
2007-05-11
1
-2
/
+3
*
more regularity in the use of quotes in error messages
Roberto Ierusalimschy
2007-02-07
1
-10
/
+14
*
behavior of 'strchr(x, 0)' is ill defined.
Roberto Ierusalimschy
2006-09-18
1
-2
/
+2
[prev]
[next]