aboutsummaryrefslogtreecommitdiff
path: root/lctype.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Easy way to allow Unicode characters in identifiersRoberto Ierusalimschy2019-12-171-16/+25
| | | | For those that want to try it...
* Removed extra information from RCS keyword stringsRoberto Ierusalimschy2018-08-231-1/+1
| | | | | Version numbers and dates (mostly wrong) from RCS keyword strings removed from all source files; only the file name are kept.
* added include for 'lprefix.h', for stuff that must be added beforeRoberto Ierusalimschy2014-11-021-1/+4
| | | | any other header file
* missing 'LUA_CORE' definitionRoberto Ierusalimschy2011-10-031-1/+4
|
* resort to standard C ctype for non-ASCII systemsRoberto Ierusalimschy2011-06-241-3/+7
|
* macro 'ltoupper' instead of 'lisupper' (more usefull for Lua)Roberto Ierusalimschy2011-06-231-18/+18
|
* new macros 'LUAI_DDEC'/'LUAI_DDEF' to better control declarations andRoberto Ierusalimschy2009-11-191-2/+2
| | | | definitions of non-static variables
* type of 'luai_ctype_' array changed to unsigned (safer for bitwiseRoberto Ierusalimschy2009-05-271-2/+2
| | | | operations)
* new property 'lisupper' (needed to compute values for hexa digits)Roberto Ierusalimschy2009-05-181-6/+6
|
* small bug: EOZ is a valid character to be testedRoberto Ierusalimschy2009-03-261-2/+3
|
* ctype 'lalpha' includes '_' (as '_' behaves as a letter from theRoberto Ierusalimschy2009-03-111-2/+2
| | | | point of view of Lua)
* added macro 'lisxdigit' (just in case :)Roberto Ierusalimschy2009-03-101-5/+5
|
* global array of ctypes renamed to 'luai_ctype_' (extern names mustRoberto Ierusalimschy2009-02-201-2/+2
| | | | use a "lua" prefix...)
* "homemade" version of ctype.hRoberto Ierusalimschy2009-02-191-0/+44