From 5f37134e64aec3a0414a41c11d6b055c667369d1 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 22 Feb 2001 15:59:59 -0300 Subject: avoid '...' and "..." inside comments --- lbaselib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lbaselib.c') diff --git a/lbaselib.c b/lbaselib.c index 44dc38e5..6ec951ca 100644 --- a/lbaselib.c +++ b/lbaselib.c @@ -1,5 +1,5 @@ /* -** $Id: lbaselib.c,v 1.24 2001/02/20 18:29:54 roberto Exp roberto $ +** $Id: lbaselib.c,v 1.25 2001/02/22 17:15:18 roberto Exp roberto $ ** Basic library ** See Copyright Notice in lua.h */ @@ -447,7 +447,7 @@ static int luaB_tremove (lua_State *L) { luaL_checktype(L, 1, LUA_TTABLE); n = lua_getn(L, 1); pos = luaL_opt_int(L, 2, n); - if (n <= 0) return 0; /* table is "empty" */ + if (n <= 0) return 0; /* table is `empty' */ lua_rawgeti(L, 1, pos); /* result = t[pos] */ for ( ;pos