diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-03-21 10:52:33 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-03-21 10:52:33 -0300 |
commit | da4811238ab48446545621389cb07051982a8279 (patch) | |
tree | 56b1a056b383cb09295630e835ad12211036bd6d /lobject.c | |
parent | f96872a534f1d10788d5607d634cc77e25a887ff (diff) | |
download | lua-da4811238ab48446545621389cb07051982a8279.tar.gz lua-da4811238ab48446545621389cb07051982a8279.tar.bz2 lua-da4811238ab48446545621389cb07051982a8279.zip |
details (typos in comments)
Diffstat (limited to 'lobject.c')
-rw-r--r-- | lobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.c,v 2.74 2014/02/26 15:27:56 roberto Exp roberto $ | 2 | ** $Id: lobject.c,v 2.75 2014/03/06 16:15:18 roberto Exp roberto $ |
3 | ** Some generic functions over Lua objects | 3 | ** Some generic functions over Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -140,7 +140,7 @@ void luaO_arith (lua_State *L, int op, const TValue *p1, const TValue *p2, | |||
140 | else break; /* go to the end */ | 140 | else break; /* go to the end */ |
141 | } | 141 | } |
142 | } | 142 | } |
143 | /* could not perform raw operation; try metmethod */ | 143 | /* could not perform raw operation; try metamethod */ |
144 | lua_assert(L != NULL); /* should not fail when folding (compile time) */ | 144 | lua_assert(L != NULL); /* should not fail when folding (compile time) */ |
145 | luaT_trybinTM(L, p1, p2, res, cast(TMS, op - LUA_OPADD + TM_ADD)); | 145 | luaT_trybinTM(L, p1, p2, res, cast(TMS, op - LUA_OPADD + TM_ADD)); |
146 | } | 146 | } |