lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Since a C "char" is not a Lua "character", consider using
"byte" instead of "character" at the following places:

under Lexical Conventions, in "a character in a literal string"
under lua_pushfstring
under lua_tolstring
under luaL_addchar
under String Manipulation, first paragraph (twice)
under string.byte
under string.char
under file:read()   (twice)

Also, under string.char, consider changing the last sentence to:
"Note that the characters corresponding to numerical codes are 
not necessarily portable across platforms. "

Dirk