diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-03-11 10:27:32 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-03-11 10:27:32 -0300 |
commit | 6ffcf2136788b032bdc0f8520b1bbc2a4d2ea76e (patch) | |
tree | b411d35241864a0ab14d8077ab3fc1f833e01025 /lctype.c | |
parent | 6427c61e7c3e6acd467b488c573ac37b0f46d0a2 (diff) | |
download | lua-6ffcf2136788b032bdc0f8520b1bbc2a4d2ea76e.tar.gz lua-6ffcf2136788b032bdc0f8520b1bbc2a4d2ea76e.tar.bz2 lua-6ffcf2136788b032bdc0f8520b1bbc2a4d2ea76e.zip |
ctype 'lalpha' includes '_' (as '_' behaves as a letter from the
point of view of Lua)
Diffstat (limited to 'lctype.c')
-rw-r--r-- | lctype.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lctype.c,v 1.2 2009/02/20 13:11:15 roberto Exp roberto $ | 2 | ** $Id: lctype.c,v 1.3 2009/03/10 17:42:33 roberto Exp roberto $ |
3 | ** 'ctype' functions for Lua | 3 | ** 'ctype' functions for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -20,7 +20,7 @@ const char luai_ctype_[UCHAR_MAX + 1] = { | |||
20 | 0x04, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x05, | 20 | 0x04, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x05, |
21 | 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, | 21 | 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, |
22 | 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, | 22 | 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, |
23 | 0x05, 0x05, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, | 23 | 0x05, 0x05, 0x05, 0x04, 0x04, 0x04, 0x04, 0x05, |
24 | 0x04, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x05, | 24 | 0x04, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x05, |
25 | 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, | 25 | 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, |
26 | 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, | 26 | 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, |