lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 168a865e6054348795b3f88c0effce153541ae7a
parent 15c17c24facb6d7e6f837b87927a54a40a54aa36
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Fri, 16 Feb 1996 10:09:54 -0300

more appropriate error message for "date"

Diffstat:
Miolib.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/iolib.c b/iolib.c @@ -3,7 +3,7 @@ ** Input/output library to LUA */ -char *rcs_iolib="$Id: iolib.c,v 1.34 1996/02/09 19:02:30 roberto Exp roberto $"; +char *rcs_iolib="$Id: iolib.c,v 1.35 1996/02/09 19:35:23 roberto Exp roberto $"; #include <stdio.h> #include <ctype.h> @@ -520,7 +520,7 @@ static void io_date (void) if (strftime(b,sizeof(b),s,tm)) lua_pushstring(b); else - lua_error("`date' format too long"); + lua_error("invalid `date' format"); } /*