This commit is contained in:
Roberto Ierusalimschy
2001-10-02 13:43:29 -03:00
parent f54cdb33a5
commit b840a7518d
4 changed files with 9 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: liolib.c,v 1.121 2001/07/22 00:59:36 roberto Exp $
** $Id: liolib.c,v 1.122 2001/08/31 19:46:07 roberto Exp $
** Standard I/O (and system) library
** See Copyright Notice in lua.h
*/
@@ -322,7 +322,7 @@ static int io_read (lua_State *L) {
success = 1; /* always success */
break;
case l_c('w'): /* word */
lua_error(L, l_s("option `*w' is deprecated"));
lua_error(L, l_s("obsolete option `*w'"));
break;
case l_c('u'): { /* read until */
size_t pl = lua_strlen(L, n) - 2;