- new error message for "attempt to assign to const variable"
- note in the manual about compatibility options
- comments
- small changes in 'read_line' and 'pushstr'
This commit is contained in:
Roberto Ierusalimschy
2019-05-28 15:46:49 -03:00
parent d9f40e3f6f
commit b293ae0577
9 changed files with 46 additions and 23 deletions

View File

@@ -3,7 +3,8 @@
print('testing strings and string library')
local maxi, mini = math.maxinteger, math.mininteger
local <const> maxi = math.maxinteger
local <const> mini = math.mininteger
local function checkerror (msg, f, ...)