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 --- ldebug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ldebug.c') diff --git a/ldebug.c b/ldebug.c index a9503ccd..7c605638 100644 --- a/ldebug.c +++ b/ldebug.c @@ -1,5 +1,5 @@ /* -** $Id: ldebug.c,v 1.66 2001/02/20 18:28:11 roberto Exp roberto $ +** $Id: ldebug.c,v 1.67 2001/02/21 16:52:09 roberto Exp roberto $ ** Debug Interface ** See Copyright Notice in lua.h */ @@ -277,7 +277,7 @@ LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) { if (isactive) func = ar->_func; else { - what++; /* skip the '>' */ + what++; /* skip the `>' */ func = L->top - 1; } for (; *what; what++) { -- cgit v1.2.3-55-g6feb