back to internal table for 'ctype', no more locale manipulation

This commit is contained in:
Roberto Ierusalimschy 2011-06-28 12:42:04 -03:00
parent 594220c624
commit f180822fa6
1 changed files with 4 additions and 23 deletions

27
ldo.c
View File

@ -1,11 +1,10 @@
/*
** $Id: ldo.c,v 2.96 2011/06/18 17:08:58 roberto Exp roberto $
** $Id: ldo.c,v 2.97 2011/06/20 16:36:03 roberto Exp roberto $
** Stack and Call structure of Lua
** See Copyright Notice in lua.h
*/
#include <locale.h>
#include <setjmp.h>
#include <stdlib.h>
#include <string.h>
@ -613,22 +612,8 @@ struct SParser { /* data to `f_parser' */
Mbuffer buff; /* dynamic structure used by the scanner */
Dyndata dyd; /* dynamic structures used by the parser */
const char *name;
TString *savedlocale;
};
/*
** save current locale and set locale to "C" for calling the parser
*/
static Proto *callparser (lua_State *L, struct SParser *p, int c) {
const char *oldloc = setlocale(LC_ALL, NULL); /* get current locale */
p->savedlocale = luaS_new(L, oldloc); /* make a copy */
setsvalue2s(L, L->top - 1, p->savedlocale); /* anchor it */
(void)setlocale(LC_ALL, "C"); /* standard locale for parsing Lua files */
return luaY_parser(L, p->z, &p->buff, &p->dyd, p->name, c);
}
static void f_parser (lua_State *L, void *ud) {
int i;
Proto *tf;
@ -636,7 +621,8 @@ static void f_parser (lua_State *L, void *ud) {
struct SParser *p = cast(struct SParser *, ud);
int c = zgetc(p->z); /* read first character */
tf = (c == LUA_SIGNATURE[0])
? luaU_undump(L, p->z, &p->buff, p->name) : callparser(L, p, c);
? luaU_undump(L, p->z, &p->buff, p->name)
: luaY_parser(L, p->z, &p->buff, &p->dyd, p->name, c);
setptvalue2s(L, L->top, tf);
incr_top(L);
cl = luaF_newLclosure(L, tf);
@ -649,9 +635,8 @@ static void f_parser (lua_State *L, void *ud) {
int luaD_protectedparser (lua_State *L, ZIO *z, const char *name) {
struct SParser p;
int status;
setnilvalue(L->top++); /* reserve space for anchoring locale */
L->nny++; /* cannot yield during parsing */
p.z = z; p.name = name; p.savedlocale = NULL;
p.z = z; p.name = name;
p.dyd.actvar.arr = NULL; p.dyd.actvar.size = 0;
p.dyd.gt.arr = NULL; p.dyd.gt.size = 0;
p.dyd.label.arr = NULL; p.dyd.label.size = 0;
@ -662,10 +647,6 @@ int luaD_protectedparser (lua_State *L, ZIO *z, const char *name) {
luaM_freearray(L, p.dyd.gt.arr, p.dyd.gt.size);
luaM_freearray(L, p.dyd.label.arr, p.dyd.label.size);
L->nny--;
if (p.savedlocale) /* locale was changed? */
(void)setlocale(LC_ALL, getstr(p.savedlocale)); /* restore old locale */
setobjs2s(L, L->top - 2, L->top - 1); /* remove reserved space */
--L->top;
return status;
}