lua-users home
lua-l archive

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


> Change ldo.c line 495 to 
>   tf = ((c == LUA_SIGNATURE[0]) ? luaU_undump(L, p->z, &p->buff, p->name) :
> luaY_parser(L, p->z, &p->buff, p->name));

Does tcc choke with the original line, which is reproduced below?
  tf = ((c == LUA_SIGNATURE[0]) ? luaU_undump : luaY_parser)(L, p->z,
                                                             &p->buff, p->name);

--lhf