diff options
Diffstat (limited to '')
-rw-r--r-- | lapi.c | 4 | ||||
-rw-r--r-- | ldebug.c | 28 | ||||
-rw-r--r-- | ldebug.h | 1 | ||||
-rw-r--r-- | lgc.c | 16 | ||||
-rw-r--r-- | lobject.c | 2 | ||||
-rw-r--r-- | lobject.h | 18 | ||||
-rw-r--r-- | lparser.c | 12 | ||||
-rw-r--r-- | lstate.c | 2 | ||||
-rw-r--r-- | lstate.h | 2 | ||||
-rw-r--r-- | lstring.c | 11 | ||||
-rw-r--r-- | lundump.c | 2 | ||||
-rw-r--r-- | lundump.h | 3 | ||||
-rw-r--r-- | lvm.c | 30 | ||||
-rw-r--r-- | manual/manual.of | 4 | ||||
-rw-r--r-- | testes/calls.lua | 2 | ||||
-rw-r--r-- | testes/db.lua | 6 | ||||
-rw-r--r-- | testes/errors.lua | 8 | ||||
-rw-r--r-- | testes/files.lua | 8 | ||||
-rw-r--r-- | testes/pm.lua | 56 | ||||
-rw-r--r-- | testes/sort.lua | 2 | ||||
-rw-r--r-- | testes/strings.lua | 3 | ||||
-rw-r--r-- | testes/utf8.lua | 2 |
22 files changed, 134 insertions, 88 deletions
@@ -417,9 +417,9 @@ LUA_API const char *lua_tolstring (lua_State *L, int idx, size_t *len) { | |||
417 | o = index2value(L, idx); /* previous call may reallocate the stack */ | 417 | o = index2value(L, idx); /* previous call may reallocate the stack */ |
418 | } | 418 | } |
419 | if (len != NULL) | 419 | if (len != NULL) |
420 | *len = vslen(o); | 420 | *len = tsslen(tsvalue(o)); |
421 | lua_unlock(L); | 421 | lua_unlock(L); |
422 | return svalue(o); | 422 | return getstr(tsvalue(o)); |
423 | } | 423 | } |
424 | 424 | ||
425 | 425 | ||
@@ -426,7 +426,7 @@ static const char *getobjname (const Proto *p, int lastpc, int reg, | |||
426 | */ | 426 | */ |
427 | static void kname (const Proto *p, int c, const char **name) { | 427 | static void kname (const Proto *p, int c, const char **name) { |
428 | TValue *kvalue = &p->k[c]; | 428 | TValue *kvalue = &p->k[c]; |
429 | *name = (ttisstring(kvalue)) ? svalue(kvalue) : "?"; | 429 | *name = (ttisstring(kvalue)) ? getstr(tsvalue(kvalue)) : "?"; |
430 | } | 430 | } |
431 | 431 | ||
432 | 432 | ||
@@ -569,7 +569,7 @@ static const char *getobjname (const Proto *p, int lastpc, int reg, | |||
569 | int b = (op == OP_LOADK) ? GETARG_Bx(i) | 569 | int b = (op == OP_LOADK) ? GETARG_Bx(i) |
570 | : GETARG_Ax(p->code[pc + 1]); | 570 | : GETARG_Ax(p->code[pc + 1]); |
571 | if (ttisstring(&p->k[b])) { | 571 | if (ttisstring(&p->k[b])) { |
572 | *name = svalue(&p->k[b]); | 572 | *name = getstr(tsvalue(&p->k[b])); |
573 | return "constant"; | 573 | return "constant"; |
574 | } | 574 | } |
575 | break; | 575 | break; |
@@ -627,7 +627,7 @@ static const char *funcnamefromcode (lua_State *L, const Proto *p, | |||
627 | default: | 627 | default: |
628 | return NULL; /* cannot find a reasonable name */ | 628 | return NULL; /* cannot find a reasonable name */ |
629 | } | 629 | } |
630 | *name = getstr(G(L)->tmname[tm]) + 2; | 630 | *name = getshrstr(G(L)->tmname[tm]) + 2; |
631 | return "metamethod"; | 631 | return "metamethod"; |
632 | } | 632 | } |
633 | 633 | ||
@@ -866,6 +866,28 @@ static int changedline (const Proto *p, int oldpc, int newpc) { | |||
866 | 866 | ||
867 | 867 | ||
868 | /* | 868 | /* |
869 | ** Traces Lua calls. If code is running the first instruction of a function, | ||
870 | ** and function is not vararg, and it is not coming from an yield, | ||
871 | ** calls 'luaD_hookcall'. (Vararg functions will call 'luaD_hookcall' | ||
872 | ** after adjusting its variable arguments; otherwise, they could call | ||
873 | ** a line/count hook before the call hook. Functions coming from | ||
874 | ** an yield already called 'luaD_hookcall' before yielding.) | ||
875 | */ | ||
876 | int luaG_tracecall (lua_State *L) { | ||
877 | CallInfo *ci = L->ci; | ||
878 | Proto *p = ci_func(ci)->p; | ||
879 | ci->u.l.trap = 1; /* ensure hooks will be checked */ | ||
880 | if (ci->u.l.savedpc == p->code) { /* first instruction (not resuming)? */ | ||
881 | if (p->is_vararg) | ||
882 | return 0; /* hooks will start at VARARGPREP instruction */ | ||
883 | else if (!(ci->callstatus & CIST_HOOKYIELD)) /* not yieded? */ | ||
884 | luaD_hookcall(L, ci); /* check 'call' hook */ | ||
885 | } | ||
886 | return 1; /* keep 'trap' on */ | ||
887 | } | ||
888 | |||
889 | |||
890 | /* | ||
869 | ** Traces the execution of a Lua function. Called before the execution | 891 | ** Traces the execution of a Lua function. Called before the execution |
870 | ** of each opcode, when debug is on. 'L->oldpc' stores the last | 892 | ** of each opcode, when debug is on. 'L->oldpc' stores the last |
871 | ** instruction traced, to detect line changes. When entering a new | 893 | ** instruction traced, to detect line changes. When entering a new |
@@ -58,6 +58,7 @@ LUAI_FUNC const char *luaG_addinfo (lua_State *L, const char *msg, | |||
58 | TString *src, int line); | 58 | TString *src, int line); |
59 | LUAI_FUNC l_noret luaG_errormsg (lua_State *L); | 59 | LUAI_FUNC l_noret luaG_errormsg (lua_State *L); |
60 | LUAI_FUNC int luaG_traceexec (lua_State *L, const Instruction *pc); | 60 | LUAI_FUNC int luaG_traceexec (lua_State *L, const Instruction *pc); |
61 | LUAI_FUNC int luaG_tracecall (lua_State *L); | ||
61 | 62 | ||
62 | 63 | ||
63 | #endif | 64 | #endif |
@@ -533,10 +533,12 @@ static void traversestrongtable (global_State *g, Table *h) { | |||
533 | static void traversetable (global_State *g, Table *h) { | 533 | static void traversetable (global_State *g, Table *h) { |
534 | const char *weakkey, *weakvalue; | 534 | const char *weakkey, *weakvalue; |
535 | const TValue *mode = gfasttm(g, h->metatable, TM_MODE); | 535 | const TValue *mode = gfasttm(g, h->metatable, TM_MODE); |
536 | TString *smode; | ||
536 | markobjectN(g, h->metatable); | 537 | markobjectN(g, h->metatable); |
537 | if (mode && ttisstring(mode) && /* is there a weak mode? */ | 538 | if (mode && ttisshrstring(mode) && /* is there a weak mode? */ |
538 | (cast_void(weakkey = strchr(svalue(mode), 'k')), | 539 | (cast_void(smode = tsvalue(mode)), |
539 | cast_void(weakvalue = strchr(svalue(mode), 'v')), | 540 | cast_void(weakkey = strchr(getshrstr(smode), 'k')), |
541 | cast_void(weakvalue = strchr(getshrstr(smode), 'v')), | ||
540 | (weakkey || weakvalue))) { /* is really weak? */ | 542 | (weakkey || weakvalue))) { /* is really weak? */ |
541 | if (!weakkey) /* strong keys? */ | 543 | if (!weakkey) /* strong keys? */ |
542 | traverseweakvalue(g, h); | 544 | traverseweakvalue(g, h); |
@@ -624,7 +626,9 @@ static void traversethread (global_State *g, lua_State *th) { | |||
624 | for (uv = th->openupval; uv != NULL; uv = uv->u.open.next) | 626 | for (uv = th->openupval; uv != NULL; uv = uv->u.open.next) |
625 | markobject(g, uv); /* open upvalues cannot be collected */ | 627 | markobject(g, uv); /* open upvalues cannot be collected */ |
626 | if (g->gcstate == GCSatomic) { /* final traversal? */ | 628 | if (g->gcstate == GCSatomic) { /* final traversal? */ |
627 | for (; o < th->stack_last.p + EXTRA_STACK; o++) | 629 | if (!g->gcemergency) |
630 | luaD_shrinkstack(th); /* do not change stack in emergency cycle */ | ||
631 | for (o = th->top.p; o < th->stack_last.p + EXTRA_STACK; o++) | ||
628 | setnilvalue(s2v(o)); /* clear dead stack slice */ | 632 | setnilvalue(s2v(o)); /* clear dead stack slice */ |
629 | /* 'remarkupvals' may have removed thread from 'twups' list */ | 633 | /* 'remarkupvals' may have removed thread from 'twups' list */ |
630 | if (!isintwups(th) && th->openupval != NULL) { | 634 | if (!isintwups(th) && th->openupval != NULL) { |
@@ -632,8 +636,6 @@ static void traversethread (global_State *g, lua_State *th) { | |||
632 | g->twups = th; | 636 | g->twups = th; |
633 | } | 637 | } |
634 | } | 638 | } |
635 | else if (!g->gcemergency) | ||
636 | luaD_shrinkstack(th); /* do not change stack in emergency cycle */ | ||
637 | } | 639 | } |
638 | 640 | ||
639 | 641 | ||
@@ -1644,6 +1646,8 @@ static void fullinc (lua_State *L, global_State *g) { | |||
1644 | entersweep(L); /* sweep everything to turn them back to white */ | 1646 | entersweep(L); /* sweep everything to turn them back to white */ |
1645 | /* finish any pending sweep phase to start a new cycle */ | 1647 | /* finish any pending sweep phase to start a new cycle */ |
1646 | luaC_runtilstate(L, bitmask(GCSpause)); | 1648 | luaC_runtilstate(L, bitmask(GCSpause)); |
1649 | luaC_runtilstate(L, bitmask(GCSpropagate)); /* start new cycle */ | ||
1650 | g->gcstate = GCSenteratomic; /* go straight to atomic phase ??? */ | ||
1647 | luaC_runtilstate(L, bitmask(GCScallfin)); /* run up to finalizers */ | 1651 | luaC_runtilstate(L, bitmask(GCScallfin)); /* run up to finalizers */ |
1648 | /* 'marked' must be correct after a full GC cycle */ | 1652 | /* 'marked' must be correct after a full GC cycle */ |
1649 | lua_assert(g->marked == gettotalobjs(g)); | 1653 | lua_assert(g->marked == gettotalobjs(g)); |
@@ -542,7 +542,7 @@ const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) { | |||
542 | addstr2buff(&buff, fmt, strlen(fmt)); /* rest of 'fmt' */ | 542 | addstr2buff(&buff, fmt, strlen(fmt)); /* rest of 'fmt' */ |
543 | clearbuff(&buff); /* empty buffer into the stack */ | 543 | clearbuff(&buff); /* empty buffer into the stack */ |
544 | lua_assert(buff.pushed == 1); | 544 | lua_assert(buff.pushed == 1); |
545 | return svalue(s2v(L->top.p - 1)); | 545 | return getstr(tsvalue(s2v(L->top.p - 1))); |
546 | } | 546 | } |
547 | 547 | ||
548 | 548 | ||
@@ -386,7 +386,7 @@ typedef struct GCObject { | |||
386 | typedef struct TString { | 386 | typedef struct TString { |
387 | CommonHeader; | 387 | CommonHeader; |
388 | lu_byte extra; /* reserved words for short strings; "has hash" for longs */ | 388 | lu_byte extra; /* reserved words for short strings; "has hash" for longs */ |
389 | lu_byte shrlen; /* length for short strings */ | 389 | lu_byte shrlen; /* length for short strings, 0xFF for long strings */ |
390 | unsigned int hash; | 390 | unsigned int hash; |
391 | union { | 391 | union { |
392 | size_t lnglen; /* length for long strings */ | 392 | size_t lnglen; /* length for long strings */ |
@@ -398,19 +398,17 @@ typedef struct TString { | |||
398 | 398 | ||
399 | 399 | ||
400 | /* | 400 | /* |
401 | ** Get the actual string (array of bytes) from a 'TString'. | 401 | ** Get the actual string (array of bytes) from a 'TString'. (Generic |
402 | ** version and specialized versions for long and short strings.) | ||
402 | */ | 403 | */ |
403 | #define getstr(ts) ((ts)->contents) | 404 | #define getstr(ts) ((ts)->contents) |
405 | #define getlngstr(ts) check_exp((ts)->shrlen == 0xFF, (ts)->contents) | ||
406 | #define getshrstr(ts) check_exp((ts)->shrlen != 0xFF, (ts)->contents) | ||
404 | 407 | ||
405 | 408 | ||
406 | /* get the actual string (array of bytes) from a Lua value */ | ||
407 | #define svalue(o) getstr(tsvalue(o)) | ||
408 | |||
409 | /* get string length from 'TString *s' */ | 409 | /* get string length from 'TString *s' */ |
410 | #define tsslen(s) ((s)->tt == LUA_VSHRSTR ? (s)->shrlen : (s)->u.lnglen) | 410 | #define tsslen(s) \ |
411 | 411 | ((s)->shrlen != 0xFF ? (s)->shrlen : (s)->u.lnglen) | |
412 | /* get string length from 'TValue *o' */ | ||
413 | #define vslen(o) tsslen(tsvalue(o)) | ||
414 | 412 | ||
415 | /* }================================================================== */ | 413 | /* }================================================================== */ |
416 | 414 | ||
@@ -1030,10 +1030,11 @@ static int explist (LexState *ls, expdesc *v) { | |||
1030 | } | 1030 | } |
1031 | 1031 | ||
1032 | 1032 | ||
1033 | static void funcargs (LexState *ls, expdesc *f, int line) { | 1033 | static void funcargs (LexState *ls, expdesc *f) { |
1034 | FuncState *fs = ls->fs; | 1034 | FuncState *fs = ls->fs; |
1035 | expdesc args; | 1035 | expdesc args; |
1036 | int base, nparams; | 1036 | int base, nparams; |
1037 | int line = ls->linenumber; | ||
1037 | switch (ls->t.token) { | 1038 | switch (ls->t.token) { |
1038 | case '(': { /* funcargs -> '(' [ explist ] ')' */ | 1039 | case '(': { /* funcargs -> '(' [ explist ] ')' */ |
1039 | luaX_next(ls); | 1040 | luaX_next(ls); |
@@ -1071,8 +1072,8 @@ static void funcargs (LexState *ls, expdesc *f, int line) { | |||
1071 | } | 1072 | } |
1072 | init_exp(f, VCALL, luaK_codeABC(fs, OP_CALL, base, nparams+1, 2)); | 1073 | init_exp(f, VCALL, luaK_codeABC(fs, OP_CALL, base, nparams+1, 2)); |
1073 | luaK_fixline(fs, line); | 1074 | luaK_fixline(fs, line); |
1074 | fs->freereg = base+1; /* call remove function and arguments and leaves | 1075 | fs->freereg = base+1; /* call removes function and arguments and leaves |
1075 | (unless changed) one result */ | 1076 | one result (unless changed later) */ |
1076 | } | 1077 | } |
1077 | 1078 | ||
1078 | 1079 | ||
@@ -1111,7 +1112,6 @@ static void suffixedexp (LexState *ls, expdesc *v) { | |||
1111 | /* suffixedexp -> | 1112 | /* suffixedexp -> |
1112 | primaryexp { '.' NAME | '[' exp ']' | ':' NAME funcargs | funcargs } */ | 1113 | primaryexp { '.' NAME | '[' exp ']' | ':' NAME funcargs | funcargs } */ |
1113 | FuncState *fs = ls->fs; | 1114 | FuncState *fs = ls->fs; |
1114 | int line = ls->linenumber; | ||
1115 | primaryexp(ls, v); | 1115 | primaryexp(ls, v); |
1116 | for (;;) { | 1116 | for (;;) { |
1117 | switch (ls->t.token) { | 1117 | switch (ls->t.token) { |
@@ -1131,12 +1131,12 @@ static void suffixedexp (LexState *ls, expdesc *v) { | |||
1131 | luaX_next(ls); | 1131 | luaX_next(ls); |
1132 | codename(ls, &key); | 1132 | codename(ls, &key); |
1133 | luaK_self(fs, v, &key); | 1133 | luaK_self(fs, v, &key); |
1134 | funcargs(ls, v, line); | 1134 | funcargs(ls, v); |
1135 | break; | 1135 | break; |
1136 | } | 1136 | } |
1137 | case '(': case TK_STRING: case '{': { /* funcargs */ | 1137 | case '(': case TK_STRING: case '{': { /* funcargs */ |
1138 | luaK_exp2nextreg(fs, v); | 1138 | luaK_exp2nextreg(fs, v); |
1139 | funcargs(ls, v, line); | 1139 | funcargs(ls, v); |
1140 | break; | 1140 | break; |
1141 | } | 1141 | } |
1142 | default: return; | 1142 | default: return; |
@@ -396,7 +396,7 @@ void luaE_warning (lua_State *L, const char *msg, int tocont) { | |||
396 | void luaE_warnerror (lua_State *L, const char *where) { | 396 | void luaE_warnerror (lua_State *L, const char *where) { |
397 | TValue *errobj = s2v(L->top.p - 1); /* error object */ | 397 | TValue *errobj = s2v(L->top.p - 1); /* error object */ |
398 | const char *msg = (ttisstring(errobj)) | 398 | const char *msg = (ttisstring(errobj)) |
399 | ? svalue(errobj) | 399 | ? getstr(tsvalue(errobj)) |
400 | : "error object is not a string"; | 400 | : "error object is not a string"; |
401 | /* produce warning "error in %s (%s)" (where, msg) */ | 401 | /* produce warning "error in %s (%s)" (where, msg) */ |
402 | luaE_warning(L, "error in ", 1); | 402 | luaE_warning(L, "error in ", 1); |
@@ -182,7 +182,7 @@ struct CallInfo { | |||
182 | union { | 182 | union { |
183 | struct { /* only for Lua functions */ | 183 | struct { /* only for Lua functions */ |
184 | const Instruction *savedpc; | 184 | const Instruction *savedpc; |
185 | volatile l_signalT trap; | 185 | volatile l_signalT trap; /* function is tracing lines/counts */ |
186 | int nextraargs; /* # of extra arguments in vararg functions */ | 186 | int nextraargs; /* # of extra arguments in vararg functions */ |
187 | } l; | 187 | } l; |
188 | struct { /* only for C functions */ | 188 | struct { /* only for C functions */ |
@@ -36,7 +36,7 @@ int luaS_eqlngstr (TString *a, TString *b) { | |||
36 | lua_assert(a->tt == LUA_VLNGSTR && b->tt == LUA_VLNGSTR); | 36 | lua_assert(a->tt == LUA_VLNGSTR && b->tt == LUA_VLNGSTR); |
37 | return (a == b) || /* same instance or... */ | 37 | return (a == b) || /* same instance or... */ |
38 | ((len == b->u.lnglen) && /* equal length and ... */ | 38 | ((len == b->u.lnglen) && /* equal length and ... */ |
39 | (memcmp(getstr(a), getstr(b), len) == 0)); /* equal contents */ | 39 | (memcmp(getlngstr(a), getlngstr(b), len) == 0)); /* equal contents */ |
40 | } | 40 | } |
41 | 41 | ||
42 | 42 | ||
@@ -52,7 +52,7 @@ unsigned int luaS_hashlongstr (TString *ts) { | |||
52 | lua_assert(ts->tt == LUA_VLNGSTR); | 52 | lua_assert(ts->tt == LUA_VLNGSTR); |
53 | if (ts->extra == 0) { /* no hash? */ | 53 | if (ts->extra == 0) { /* no hash? */ |
54 | size_t len = ts->u.lnglen; | 54 | size_t len = ts->u.lnglen; |
55 | ts->hash = luaS_hash(getstr(ts), len, ts->hash); | 55 | ts->hash = luaS_hash(getlngstr(ts), len, ts->hash); |
56 | ts->extra = 1; /* now it has its hash */ | 56 | ts->extra = 1; /* now it has its hash */ |
57 | } | 57 | } |
58 | return ts->hash; | 58 | return ts->hash; |
@@ -157,6 +157,7 @@ static TString *createstrobj (lua_State *L, size_t l, int tag, unsigned int h) { | |||
157 | TString *luaS_createlngstrobj (lua_State *L, size_t l) { | 157 | TString *luaS_createlngstrobj (lua_State *L, size_t l) { |
158 | TString *ts = createstrobj(L, l, LUA_VLNGSTR, G(L)->seed); | 158 | TString *ts = createstrobj(L, l, LUA_VLNGSTR, G(L)->seed); |
159 | ts->u.lnglen = l; | 159 | ts->u.lnglen = l; |
160 | ts->shrlen = 0xFF; /* signals that it is a long string */ | ||
160 | return ts; | 161 | return ts; |
161 | } | 162 | } |
162 | 163 | ||
@@ -193,7 +194,7 @@ static TString *internshrstr (lua_State *L, const char *str, size_t l) { | |||
193 | TString **list = &tb->hash[lmod(h, tb->size)]; | 194 | TString **list = &tb->hash[lmod(h, tb->size)]; |
194 | lua_assert(str != NULL); /* otherwise 'memcmp'/'memcpy' are undefined */ | 195 | lua_assert(str != NULL); /* otherwise 'memcmp'/'memcpy' are undefined */ |
195 | for (ts = *list; ts != NULL; ts = ts->u.hnext) { | 196 | for (ts = *list; ts != NULL; ts = ts->u.hnext) { |
196 | if (l == ts->shrlen && (memcmp(str, getstr(ts), l * sizeof(char)) == 0)) { | 197 | if (l == ts->shrlen && (memcmp(str, getshrstr(ts), l * sizeof(char)) == 0)) { |
197 | /* found! */ | 198 | /* found! */ |
198 | if (isdead(g, ts)) /* dead (but not collected yet)? */ | 199 | if (isdead(g, ts)) /* dead (but not collected yet)? */ |
199 | changewhite(ts); /* resurrect it */ | 200 | changewhite(ts); /* resurrect it */ |
@@ -206,7 +207,7 @@ static TString *internshrstr (lua_State *L, const char *str, size_t l) { | |||
206 | list = &tb->hash[lmod(h, tb->size)]; /* rehash with new size */ | 207 | list = &tb->hash[lmod(h, tb->size)]; /* rehash with new size */ |
207 | } | 208 | } |
208 | ts = createstrobj(L, l, LUA_VSHRSTR, h); | 209 | ts = createstrobj(L, l, LUA_VSHRSTR, h); |
209 | memcpy(getstr(ts), str, l * sizeof(char)); | 210 | memcpy(getshrstr(ts), str, l * sizeof(char)); |
210 | ts->shrlen = cast_byte(l); | 211 | ts->shrlen = cast_byte(l); |
211 | ts->u.hnext = *list; | 212 | ts->u.hnext = *list; |
212 | *list = ts; | 213 | *list = ts; |
@@ -226,7 +227,7 @@ TString *luaS_newlstr (lua_State *L, const char *str, size_t l) { | |||
226 | if (l_unlikely(l >= (MAX_SIZE - sizeof(TString))/sizeof(char))) | 227 | if (l_unlikely(l >= (MAX_SIZE - sizeof(TString))/sizeof(char))) |
227 | luaM_toobig(L); | 228 | luaM_toobig(L); |
228 | ts = luaS_createlngstrobj(L, l); | 229 | ts = luaS_createlngstrobj(L, l); |
229 | memcpy(getstr(ts), str, l * sizeof(char)); | 230 | memcpy(getlngstr(ts), str, l * sizeof(char)); |
230 | return ts; | 231 | return ts; |
231 | } | 232 | } |
232 | } | 233 | } |
@@ -131,7 +131,7 @@ static TString *loadStringN (LoadState *S, Proto *p) { | |||
131 | ts = luaS_createlngstrobj(L, size); /* create string */ | 131 | ts = luaS_createlngstrobj(L, size); /* create string */ |
132 | setsvalue2s(L, L->top.p, ts); /* anchor it ('loadVector' can GC) */ | 132 | setsvalue2s(L, L->top.p, ts); /* anchor it ('loadVector' can GC) */ |
133 | luaD_inctop(L); | 133 | luaD_inctop(L); |
134 | loadVector(S, getstr(ts), size); /* load directly in final place */ | 134 | loadVector(S, getlngstr(ts), size); /* load directly in final place */ |
135 | L->top.p--; /* pop string */ | 135 | L->top.p--; /* pop string */ |
136 | } | 136 | } |
137 | luaC_objbarrier(L, p, ts); | 137 | luaC_objbarrier(L, p, ts); |
@@ -21,8 +21,7 @@ | |||
21 | /* | 21 | /* |
22 | ** Encode major-minor version in one byte, one nibble for each | 22 | ** Encode major-minor version in one byte, one nibble for each |
23 | */ | 23 | */ |
24 | #define MYINT(s) (s[0]-'0') /* assume one-digit numerals */ | 24 | #define LUAC_VERSION (LUA_VERSION_MAJOR_N*16+LUA_VERSION_MINOR_N) |
25 | #define LUAC_VERSION (MYINT(LUA_VERSION_MAJOR)*16+MYINT(LUA_VERSION_MINOR)) | ||
26 | 25 | ||
27 | #define LUAC_FORMAT 0 /* this is the official format */ | 26 | #define LUAC_FORMAT 0 /* this is the official format */ |
28 | 27 | ||
@@ -91,8 +91,10 @@ static int l_strton (const TValue *obj, TValue *result) { | |||
91 | lua_assert(obj != result); | 91 | lua_assert(obj != result); |
92 | if (!cvt2num(obj)) /* is object not a string? */ | 92 | if (!cvt2num(obj)) /* is object not a string? */ |
93 | return 0; | 93 | return 0; |
94 | else | 94 | else { |
95 | return (luaO_str2num(svalue(obj), result) == vslen(obj) + 1); | 95 | TString *st = tsvalue(obj); |
96 | return (luaO_str2num(getstr(st), result) == tsslen(st) + 1); | ||
97 | } | ||
96 | } | 98 | } |
97 | 99 | ||
98 | 100 | ||
@@ -627,8 +629,9 @@ int luaV_equalobj (lua_State *L, const TValue *t1, const TValue *t2) { | |||
627 | static void copy2buff (StkId top, int n, char *buff) { | 629 | static void copy2buff (StkId top, int n, char *buff) { |
628 | size_t tl = 0; /* size already copied */ | 630 | size_t tl = 0; /* size already copied */ |
629 | do { | 631 | do { |
630 | size_t l = vslen(s2v(top - n)); /* length of string being copied */ | 632 | TString *st = tsvalue(s2v(top - n)); |
631 | memcpy(buff + tl, svalue(s2v(top - n)), l * sizeof(char)); | 633 | size_t l = tsslen(st); /* length of string being copied */ |
634 | memcpy(buff + tl, getstr(st), l * sizeof(char)); | ||
632 | tl += l; | 635 | tl += l; |
633 | } while (--n > 0); | 636 | } while (--n > 0); |
634 | } | 637 | } |
@@ -654,11 +657,11 @@ void luaV_concat (lua_State *L, int total) { | |||
654 | } | 657 | } |
655 | else { | 658 | else { |
656 | /* at least two non-empty string values; get as many as possible */ | 659 | /* at least two non-empty string values; get as many as possible */ |
657 | size_t tl = vslen(s2v(top - 1)); | 660 | size_t tl = tsslen(tsvalue(s2v(top - 1))); |
658 | TString *ts; | 661 | TString *ts; |
659 | /* collect total length and number of strings */ | 662 | /* collect total length and number of strings */ |
660 | for (n = 1; n < total && tostring(L, s2v(top - n - 1)); n++) { | 663 | for (n = 1; n < total && tostring(L, s2v(top - n - 1)); n++) { |
661 | size_t l = vslen(s2v(top - n - 1)); | 664 | size_t l = tsslen(tsvalue(s2v(top - n - 1))); |
662 | if (l_unlikely(l >= (MAX_SIZE/sizeof(char)) - tl)) { | 665 | if (l_unlikely(l >= (MAX_SIZE/sizeof(char)) - tl)) { |
663 | L->top.p = top - total; /* pop strings to avoid wasting stack */ | 666 | L->top.p = top - total; /* pop strings to avoid wasting stack */ |
664 | luaG_runerror(L, "string length overflow"); | 667 | luaG_runerror(L, "string length overflow"); |
@@ -672,7 +675,7 @@ void luaV_concat (lua_State *L, int total) { | |||
672 | } | 675 | } |
673 | else { /* long string; copy strings directly to final result */ | 676 | else { /* long string; copy strings directly to final result */ |
674 | ts = luaS_createlngstrobj(L, tl); | 677 | ts = luaS_createlngstrobj(L, tl); |
675 | copy2buff(top, n, getstr(ts)); | 678 | copy2buff(top, n, getlngstr(ts)); |
676 | } | 679 | } |
677 | setsvalue2s(L, top - n, ts); /* create result */ | 680 | setsvalue2s(L, top - n, ts); /* create result */ |
678 | } | 681 | } |
@@ -1158,18 +1161,11 @@ void luaV_execute (lua_State *L, CallInfo *ci) { | |||
1158 | startfunc: | 1161 | startfunc: |
1159 | trap = L->hookmask; | 1162 | trap = L->hookmask; |
1160 | returning: /* trap already set */ | 1163 | returning: /* trap already set */ |
1161 | cl = clLvalue(s2v(ci->func.p)); | 1164 | cl = ci_func(ci); |
1162 | k = cl->p->k; | 1165 | k = cl->p->k; |
1163 | pc = ci->u.l.savedpc; | 1166 | pc = ci->u.l.savedpc; |
1164 | if (l_unlikely(trap)) { | 1167 | if (l_unlikely(trap)) |
1165 | if (pc == cl->p->code) { /* first instruction (not resuming)? */ | 1168 | trap = luaG_tracecall(L); |
1166 | if (cl->p->is_vararg) | ||
1167 | trap = 0; /* hooks will start after VARARGPREP instruction */ | ||
1168 | else /* check 'call' hook */ | ||
1169 | luaD_hookcall(L, ci); | ||
1170 | } | ||
1171 | ci->u.l.trap = 1; /* assume trap is on, for now */ | ||
1172 | } | ||
1173 | base = ci->func.p + 1; | 1169 | base = ci->func.p + 1; |
1174 | /* main loop of interpreter */ | 1170 | /* main loop of interpreter */ |
1175 | for (;;) { | 1171 | for (;;) { |
diff --git a/manual/manual.of b/manual/manual.of index 1e219f9a..c16039b4 100644 --- a/manual/manual.of +++ b/manual/manual.of | |||
@@ -9033,6 +9033,10 @@ Lua does not consult any environment variables. | |||
9033 | In particular, | 9033 | In particular, |
9034 | the values of @Lid{package.path} and @Lid{package.cpath} | 9034 | the values of @Lid{package.path} and @Lid{package.cpath} |
9035 | are set with the default paths defined in @id{luaconf.h}. | 9035 | are set with the default paths defined in @id{luaconf.h}. |
9036 | To signal to the libraries that this option is on, | ||
9037 | the stand-alone interpreter sets the field | ||
9038 | @idx{"LUA_NOENV"} in the registry to a true value. | ||
9039 | Other libraries may consult this field for the same purpose. | ||
9036 | 9040 | ||
9037 | The options @T{-e}, @T{-l}, and @T{-W} are handled in | 9041 | The options @T{-e}, @T{-l}, and @T{-W} are handled in |
9038 | the order they appear. | 9042 | the order they appear. |
diff --git a/testes/calls.lua b/testes/calls.lua index 559ca935..7468d4ab 100644 --- a/testes/calls.lua +++ b/testes/calls.lua | |||
@@ -342,7 +342,7 @@ do -- another bug (in 5.4.0) | |||
342 | end | 342 | end |
343 | 343 | ||
344 | 344 | ||
345 | do -- another bug (since 5.2) | 345 | if not _port then -- another bug (since 5.2) |
346 | -- corrupted binary dump: list of upvalue names is larger than number | 346 | -- corrupted binary dump: list of upvalue names is larger than number |
347 | -- of upvalues, overflowing the array of upvalues. | 347 | -- of upvalues, overflowing the array of upvalues. |
348 | local code = | 348 | local code = |
diff --git a/testes/db.lua b/testes/db.lua index 67b58934..d3758c41 100644 --- a/testes/db.lua +++ b/testes/db.lua | |||
@@ -345,7 +345,7 @@ function f(a,b) | |||
345 | local _, y = debug.getlocal(1, 2) | 345 | local _, y = debug.getlocal(1, 2) |
346 | assert(x == a and y == b) | 346 | assert(x == a and y == b) |
347 | assert(debug.setlocal(2, 3, "pera") == "AA".."AA") | 347 | assert(debug.setlocal(2, 3, "pera") == "AA".."AA") |
348 | assert(debug.setlocal(2, 4, "maçã") == "B") | 348 | assert(debug.setlocal(2, 4, "manga") == "B") |
349 | x = debug.getinfo(2) | 349 | x = debug.getinfo(2) |
350 | assert(x.func == g and x.what == "Lua" and x.name == 'g' and | 350 | assert(x.func == g and x.what == "Lua" and x.name == 'g' and |
351 | x.nups == 2 and string.find(x.source, "^@.*db%.lua$")) | 351 | x.nups == 2 and string.find(x.source, "^@.*db%.lua$")) |
@@ -373,9 +373,9 @@ function g (...) | |||
373 | local arg = {...} | 373 | local arg = {...} |
374 | do local a,b,c; a=math.sin(40); end | 374 | do local a,b,c; a=math.sin(40); end |
375 | local feijao | 375 | local feijao |
376 | local AAAA,B = "xuxu", "mamão" | 376 | local AAAA,B = "xuxu", "abacate" |
377 | f(AAAA,B) | 377 | f(AAAA,B) |
378 | assert(AAAA == "pera" and B == "maçã") | 378 | assert(AAAA == "pera" and B == "manga") |
379 | do | 379 | do |
380 | local B = 13 | 380 | local B = 13 |
381 | local x,y = debug.getlocal(1,5) | 381 | local x,y = debug.getlocal(1,5) |
diff --git a/testes/errors.lua b/testes/errors.lua index bf6f389d..b777a329 100644 --- a/testes/errors.lua +++ b/testes/errors.lua | |||
@@ -392,19 +392,19 @@ lineerror("a\n=\n-\n\nprint\n;", 3) | |||
392 | 392 | ||
393 | lineerror([[ | 393 | lineerror([[ |
394 | a | 394 | a |
395 | ( | 395 | ( -- << |
396 | 23) | 396 | 23) |
397 | ]], 1) | 397 | ]], 2) |
398 | 398 | ||
399 | lineerror([[ | 399 | lineerror([[ |
400 | local a = {x = 13} | 400 | local a = {x = 13} |
401 | a | 401 | a |
402 | . | 402 | . |
403 | x | 403 | x |
404 | ( | 404 | ( -- << |
405 | 23 | 405 | 23 |
406 | ) | 406 | ) |
407 | ]], 2) | 407 | ]], 5) |
408 | 408 | ||
409 | lineerror([[ | 409 | lineerror([[ |
410 | local a = {x = 13} | 410 | local a = {x = 13} |
diff --git a/testes/files.lua b/testes/files.lua index 149e9c76..2582406f 100644 --- a/testes/files.lua +++ b/testes/files.lua | |||
@@ -92,8 +92,8 @@ assert(io.output():seek("end") == string.len("alo joao")) | |||
92 | 92 | ||
93 | assert(io.output():seek("set") == 0) | 93 | assert(io.output():seek("set") == 0) |
94 | 94 | ||
95 | assert(io.write('"álo"', "{a}\n", "second line\n", "third line \n")) | 95 | assert(io.write('"alo"', "{a}\n", "second line\n", "third line \n")) |
96 | assert(io.write('çfourth_line')) | 96 | assert(io.write('Xfourth_line')) |
97 | io.output(io.stdout) | 97 | io.output(io.stdout) |
98 | collectgarbage() -- file should be closed by GC | 98 | collectgarbage() -- file should be closed by GC |
99 | assert(io.input() == io.stdin and rawequal(io.output(), io.stdout)) | 99 | assert(io.input() == io.stdin and rawequal(io.output(), io.stdout)) |
@@ -300,14 +300,14 @@ do -- test error returns | |||
300 | end | 300 | end |
301 | checkerr("invalid format", io.read, "x") | 301 | checkerr("invalid format", io.read, "x") |
302 | assert(io.read(0) == "") -- not eof | 302 | assert(io.read(0) == "") -- not eof |
303 | assert(io.read(5, 'l') == '"álo"') | 303 | assert(io.read(5, 'l') == '"alo"') |
304 | assert(io.read(0) == "") | 304 | assert(io.read(0) == "") |
305 | assert(io.read() == "second line") | 305 | assert(io.read() == "second line") |
306 | local x = io.input():seek() | 306 | local x = io.input():seek() |
307 | assert(io.read() == "third line ") | 307 | assert(io.read() == "third line ") |
308 | assert(io.input():seek("set", x)) | 308 | assert(io.input():seek("set", x)) |
309 | assert(io.read('L') == "third line \n") | 309 | assert(io.read('L') == "third line \n") |
310 | assert(io.read(1) == "ç") | 310 | assert(io.read(1) == "X") |
311 | assert(io.read(string.len"fourth_line") == "fourth_line") | 311 | assert(io.read(string.len"fourth_line") == "fourth_line") |
312 | assert(io.input():seek("cur", -string.len"fourth_line")) | 312 | assert(io.input():seek("cur", -string.len"fourth_line")) |
313 | assert(io.read() == "fourth_line") | 313 | assert(io.read() == "fourth_line") |
diff --git a/testes/pm.lua b/testes/pm.lua index 795596d4..44454dff 100644 --- a/testes/pm.lua +++ b/testes/pm.lua | |||
@@ -1,6 +1,9 @@ | |||
1 | -- $Id: testes/pm.lua $ | 1 | -- $Id: testes/pm.lua $ |
2 | -- See Copyright Notice in file all.lua | 2 | -- See Copyright Notice in file all.lua |
3 | 3 | ||
4 | -- UTF-8 file | ||
5 | |||
6 | |||
4 | print('testing pattern matching') | 7 | print('testing pattern matching') |
5 | 8 | ||
6 | local function checkerror (msg, f, ...) | 9 | local function checkerror (msg, f, ...) |
@@ -50,6 +53,19 @@ assert(f('aLo_ALO', '%a*') == 'aLo') | |||
50 | 53 | ||
51 | assert(f(" \n\r*&\n\r xuxu \n\n", "%g%g%g+") == "xuxu") | 54 | assert(f(" \n\r*&\n\r xuxu \n\n", "%g%g%g+") == "xuxu") |
52 | 55 | ||
56 | |||
57 | -- Adapt a pattern to UTF-8 | ||
58 | local function PU (p) | ||
59 | -- break '?' into each individual byte of a character | ||
60 | p = string.gsub(p, "(" .. utf8.charpattern .. ")%?", function (c) | ||
61 | return string.gsub(c, ".", "%0?") | ||
62 | end) | ||
63 | -- change '.' to utf-8 character patterns | ||
64 | p = string.gsub(p, "%.", utf8.charpattern) | ||
65 | return p | ||
66 | end | ||
67 | |||
68 | |||
53 | assert(f('aaab', 'a*') == 'aaa'); | 69 | assert(f('aaab', 'a*') == 'aaa'); |
54 | assert(f('aaa', '^.*$') == 'aaa'); | 70 | assert(f('aaa', '^.*$') == 'aaa'); |
55 | assert(f('aaa', 'b*') == ''); | 71 | assert(f('aaa', 'b*') == ''); |
@@ -73,16 +89,16 @@ assert(f('aaa', '^.-$') == 'aaa') | |||
73 | assert(f('aabaaabaaabaaaba', 'b.*b') == 'baaabaaabaaab') | 89 | assert(f('aabaaabaaabaaaba', 'b.*b') == 'baaabaaabaaab') |
74 | assert(f('aabaaabaaabaaaba', 'b.-b') == 'baaab') | 90 | assert(f('aabaaabaaabaaaba', 'b.-b') == 'baaab') |
75 | assert(f('alo xo', '.o$') == 'xo') | 91 | assert(f('alo xo', '.o$') == 'xo') |
76 | assert(f(' \n isto é assim', '%S%S*') == 'isto') | 92 | assert(f(' \n isto é assim', '%S%S*') == 'isto') |
77 | assert(f(' \n isto é assim', '%S*$') == 'assim') | 93 | assert(f(' \n isto é assim', '%S*$') == 'assim') |
78 | assert(f(' \n isto é assim', '[a-z]*$') == 'assim') | 94 | assert(f(' \n isto é assim', '[a-z]*$') == 'assim') |
79 | assert(f('um caracter ? extra', '[^%sa-z]') == '?') | 95 | assert(f('um caracter ? extra', '[^%sa-z]') == '?') |
80 | assert(f('', 'a?') == '') | 96 | assert(f('', 'a?') == '') |
81 | assert(f('á', 'á?') == 'á') | 97 | assert(f('á', PU'á?') == 'á') |
82 | assert(f('ábl', 'á?b?l?') == 'ábl') | 98 | assert(f('ábl', PU'á?b?l?') == 'ábl') |
83 | assert(f(' ábl', 'á?b?l?') == '') | 99 | assert(f(' ábl', PU'á?b?l?') == '') |
84 | assert(f('aa', '^aa?a?a') == 'aa') | 100 | assert(f('aa', '^aa?a?a') == 'aa') |
85 | assert(f(']]]áb', '[^]]') == 'á') | 101 | assert(f(']]]áb', '[^]]+') == 'áb') |
86 | assert(f("0alo alo", "%x*") == "0a") | 102 | assert(f("0alo alo", "%x*") == "0a") |
87 | assert(f("alo alo", "%C+") == "alo alo") | 103 | assert(f("alo alo", "%C+") == "alo alo") |
88 | print('+') | 104 | print('+') |
@@ -136,28 +152,28 @@ assert(string.match("alo xyzK", "(%w+)K") == "xyz") | |||
136 | assert(string.match("254 K", "(%d*)K") == "") | 152 | assert(string.match("254 K", "(%d*)K") == "") |
137 | assert(string.match("alo ", "(%w*)$") == "") | 153 | assert(string.match("alo ", "(%w*)$") == "") |
138 | assert(not string.match("alo ", "(%w+)$")) | 154 | assert(not string.match("alo ", "(%w+)$")) |
139 | assert(string.find("(álo)", "%(á") == 1) | 155 | assert(string.find("(álo)", "%(á") == 1) |
140 | local a, b, c, d, e = string.match("âlo alo", "^(((.).).* (%w*))$") | 156 | local a, b, c, d, e = string.match("âlo alo", PU"^(((.).). (%w*))$") |
141 | assert(a == 'âlo alo' and b == 'âl' and c == 'â' and d == 'alo' and e == nil) | 157 | assert(a == 'âlo alo' and b == 'âl' and c == 'â' and d == 'alo' and e == nil) |
142 | a, b, c, d = string.match('0123456789', '(.+(.?)())') | 158 | a, b, c, d = string.match('0123456789', '(.+(.?)())') |
143 | assert(a == '0123456789' and b == '' and c == 11 and d == nil) | 159 | assert(a == '0123456789' and b == '' and c == 11 and d == nil) |
144 | print('+') | 160 | print('+') |
145 | 161 | ||
146 | assert(string.gsub('ülo ülo', 'ü', 'x') == 'xlo xlo') | 162 | assert(string.gsub('ülo ülo', 'ü', 'x') == 'xlo xlo') |
147 | assert(string.gsub('alo úlo ', ' +$', '') == 'alo úlo') -- trim | 163 | assert(string.gsub('alo úlo ', ' +$', '') == 'alo úlo') -- trim |
148 | assert(string.gsub(' alo alo ', '^%s*(.-)%s*$', '%1') == 'alo alo') -- double trim | 164 | assert(string.gsub(' alo alo ', '^%s*(.-)%s*$', '%1') == 'alo alo') -- double trim |
149 | assert(string.gsub('alo alo \n 123\n ', '%s+', ' ') == 'alo alo 123 ') | 165 | assert(string.gsub('alo alo \n 123\n ', '%s+', ' ') == 'alo alo 123 ') |
150 | local t = "abç d" | 166 | local t = "abç d" |
151 | a, b = string.gsub(t, '(.)', '%1@') | 167 | a, b = string.gsub(t, PU'(.)', '%1@') |
152 | assert('@'..a == string.gsub(t, '', '@') and b == 5) | 168 | assert(a == "a@b@ç@ @d@" and b == 5) |
153 | a, b = string.gsub('abçd', '(.)', '%0@', 2) | 169 | a, b = string.gsub('abçd', PU'(.)', '%0@', 2) |
154 | assert(a == 'a@b@çd' and b == 2) | 170 | assert(a == 'a@b@çd' and b == 2) |
155 | assert(string.gsub('alo alo', '()[al]', '%1') == '12o 56o') | 171 | assert(string.gsub('alo alo', '()[al]', '%1') == '12o 56o') |
156 | assert(string.gsub("abc=xyz", "(%w*)(%p)(%w+)", "%3%2%1-%0") == | 172 | assert(string.gsub("abc=xyz", "(%w*)(%p)(%w+)", "%3%2%1-%0") == |
157 | "xyz=abc-abc=xyz") | 173 | "xyz=abc-abc=xyz") |
158 | assert(string.gsub("abc", "%w", "%1%0") == "aabbcc") | 174 | assert(string.gsub("abc", "%w", "%1%0") == "aabbcc") |
159 | assert(string.gsub("abc", "%w+", "%0%1") == "abcabc") | 175 | assert(string.gsub("abc", "%w+", "%0%1") == "abcabc") |
160 | assert(string.gsub('áéí', '$', '\0óú') == 'áéí\0óú') | 176 | assert(string.gsub('áéÃ', '$', '\0óú') == 'áéÃ\0óú') |
161 | assert(string.gsub('', '^', 'r') == 'r') | 177 | assert(string.gsub('', '^', 'r') == 'r') |
162 | assert(string.gsub('', '$', 'r') == 'r') | 178 | assert(string.gsub('', '$', 'r') == 'r') |
163 | print('+') | 179 | print('+') |
@@ -188,8 +204,8 @@ do | |||
188 | end | 204 | end |
189 | 205 | ||
190 | function f(a,b) return string.gsub(a,'.',b) end | 206 | function f(a,b) return string.gsub(a,'.',b) end |
191 | assert(string.gsub("trocar tudo em |teste|b| é |beleza|al|", "|([^|]*)|([^|]*)|", f) == | 207 | assert(string.gsub("trocar tudo em |teste|b| é |beleza|al|", "|([^|]*)|([^|]*)|", f) == |
192 | "trocar tudo em bbbbb é alalalalalal") | 208 | "trocar tudo em bbbbb é alalalalalal") |
193 | 209 | ||
194 | local function dostring (s) return load(s, "")() or "" end | 210 | local function dostring (s) return load(s, "")() or "" end |
195 | assert(string.gsub("alo $a='x'$ novamente $return a$", | 211 | assert(string.gsub("alo $a='x'$ novamente $return a$", |
diff --git a/testes/sort.lua b/testes/sort.lua index 52919b8c..40bb2d8a 100644 --- a/testes/sort.lua +++ b/testes/sort.lua | |||
@@ -289,7 +289,7 @@ timesort(a, limit, function(x,y) return nil end, "equal") | |||
289 | 289 | ||
290 | for i,v in pairs(a) do assert(v == false) end | 290 | for i,v in pairs(a) do assert(v == false) end |
291 | 291 | ||
292 | AA = {"álo", "\0first :-)", "alo", "then this one", "45", "and a new"} | 292 | AA = {"\xE1lo", "\0first :-)", "alo", "then this one", "45", "and a new"} |
293 | table.sort(AA) | 293 | table.sort(AA) |
294 | check(AA) | 294 | check(AA) |
295 | 295 | ||
diff --git a/testes/strings.lua b/testes/strings.lua index b033c6ab..90983edd 100644 --- a/testes/strings.lua +++ b/testes/strings.lua | |||
@@ -1,6 +1,9 @@ | |||
1 | -- $Id: testes/strings.lua $ | 1 | -- $Id: testes/strings.lua $ |
2 | -- See Copyright Notice in file all.lua | 2 | -- See Copyright Notice in file all.lua |
3 | 3 | ||
4 | -- ISO Latin encoding | ||
5 | |||
6 | |||
4 | print('testing strings and string library') | 7 | print('testing strings and string library') |
5 | 8 | ||
6 | local maxi <const> = math.maxinteger | 9 | local maxi <const> = math.maxinteger |
diff --git a/testes/utf8.lua b/testes/utf8.lua index c5a9dd3f..efadbd5c 100644 --- a/testes/utf8.lua +++ b/testes/utf8.lua | |||
@@ -1,6 +1,8 @@ | |||
1 | -- $Id: testes/utf8.lua $ | 1 | -- $Id: testes/utf8.lua $ |
2 | -- See Copyright Notice in file all.lua | 2 | -- See Copyright Notice in file all.lua |
3 | 3 | ||
4 | -- UTF-8 file | ||
5 | |||
4 | print "testing UTF-8 library" | 6 | print "testing UTF-8 library" |
5 | 7 | ||
6 | local utf8 = require'utf8' | 8 | local utf8 = require'utf8' |