aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-10-29 15:52:46 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-10-29 15:52:46 -0200
commitfdd5f2f7a32535eb8f2fbafbed2d84c0e69392c0 (patch)
tree6a546b664d3abca7bddc9e650dc9062fed430c4c
parentc6ef3e2672859a26bb5f0ab5fa3f99a3fb32d5b4 (diff)
downloadlua-fdd5f2f7a32535eb8f2fbafbed2d84c0e69392c0.tar.gz
lua-fdd5f2f7a32535eb8f2fbafbed2d84c0e69392c0.tar.bz2
lua-fdd5f2f7a32535eb8f2fbafbed2d84c0e69392c0.zip
comment typos
-rw-r--r--lstate.h4
-rw-r--r--lstrlib.c4
-rw-r--r--luaconf.h6
-rw-r--r--lvm.c4
4 files changed, 9 insertions, 9 deletions
diff --git a/lstate.h b/lstate.h
index 656b04fb..a8923ca3 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.66 2010/09/03 14:14:01 roberto Exp roberto $ 2** $Id: lstate.h,v 2.67 2010/09/30 17:21:31 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -66,7 +66,7 @@ typedef struct stringtable {
66 66
67 67
68/* 68/*
69** informations about a call 69** information about a call
70*/ 70*/
71typedef struct CallInfo { 71typedef struct CallInfo {
72 StkId func; /* function index in the stack */ 72 StkId func; /* function index in the stack */
diff --git a/lstrlib.c b/lstrlib.c
index 00a510ee..21e8239f 100644
--- a/lstrlib.c
+++ b/lstrlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstrlib.c,v 1.154 2010/07/02 11:38:13 roberto Exp roberto $ 2** $Id: lstrlib.c,v 1.155 2010/10/25 19:01:37 roberto Exp roberto $
3** Standard library for string operations and pattern-matching 3** Standard library for string operations and pattern-matching
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -424,7 +424,7 @@ static const char *match (MatchState *ms, const char *s, const char *p) {
424 default: goto dflt; 424 default: goto dflt;
425 } 425 }
426 } 426 }
427 default: dflt: { /* pattern class plus optional sufix */ 427 default: dflt: { /* pattern class plus optional suffix */
428 const char *ep = classend(ms, p); /* points to what is next */ 428 const char *ep = classend(ms, p); /* points to what is next */
429 int m = s < ms->src_end && singlematch(uchar(*s), p, ep); 429 int m = s < ms->src_end && singlematch(uchar(*s), p, ep);
430 switch (*ep) { 430 switch (*ep) {
diff --git a/luaconf.h b/luaconf.h
index 46c3a281..454eb2f8 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.146 2010/10/28 15:18:25 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.147 2010/10/29 11:13:21 roberto Exp roberto $
3** Configuration file for Lua 3** Configuration file for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -457,7 +457,7 @@
457#if defined(LUA_NUMBER_DOUBLE) && !defined(LUA_ANSI) && \ 457#if defined(LUA_NUMBER_DOUBLE) && !defined(LUA_ANSI) && \
458 !defined(LUA_NOIEEE754TRICK) /* { */ 458 !defined(LUA_NOIEEE754TRICK) /* { */
459 459
460/* On a Microsoft compiler on a Pentium, use assembler to avoid chashes 460/* On a Microsoft compiler on a Pentium, use assembler to avoid clashes
461 with a DirectX idiosyncrasy */ 461 with a DirectX idiosyncrasy */
462#if defined(_MSC_VER) && defined(M_IX86) /* { */ 462#if defined(_MSC_VER) && defined(M_IX86) /* { */
463 463
@@ -473,7 +473,7 @@
473union luai_Cast { double l_d; LUA_INT32 l_p[2]; }; 473union luai_Cast { double l_d; LUA_INT32 l_p[2]; };
474 474
475/* 475/*
476@@ LUA_IEEEENDIAN is the endianess of doubles in your machine 476@@ LUA_IEEEENDIAN is the endianness of doubles in your machine
477@@ (0 for little endian, 1 for big endian); if not defined, Lua will 477@@ (0 for little endian, 1 for big endian); if not defined, Lua will
478@@ check it dynamically. 478@@ check it dynamically.
479*/ 479*/
diff --git a/lvm.c b/lvm.c
index 5c15c353..a20367ad 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 2.123 2010/06/30 14:11:17 roberto Exp roberto $ 2** $Id: lvm.c,v 2.124 2010/10/25 19:01:37 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -301,7 +301,7 @@ void luaV_concat (lua_State *L, int total) {
301 setsvalue2s(L, top-n, luaS_newlstr(L, buffer, tl)); 301 setsvalue2s(L, top-n, luaS_newlstr(L, buffer, tl));
302 } 302 }
303 total -= n-1; /* got 'n' strings to create 1 new */ 303 total -= n-1; /* got 'n' strings to create 1 new */
304 L->top -= n-1; /* poped 'n' strings and pushed one */ 304 L->top -= n-1; /* popped 'n' strings and pushed one */
305 } while (total > 1); /* repeat until only 1 result left */ 305 } while (total > 1); /* repeat until only 1 result left */
306} 306}
307 307