1
0
mirror of https://github.com/lua/lua synced 2026-06-08 15:34:49 +00:00
- 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
+2 -1
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, ...)