From 594220c6242072529f27132034619bf0c6dd4474 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 27 Jun 2011 16:42:31 -0300 Subject: [PATCH] use standard "underscore + uppercases" for reserved keys in the registry --- liolib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/liolib.c b/liolib.c index 2f3920d3..6b77b28b 100644 --- a/liolib.c +++ b/liolib.c @@ -1,5 +1,5 @@ /* -** $Id: liolib.c,v 2.99 2011/03/03 16:34:46 roberto Exp roberto $ +** $Id: liolib.c,v 2.100 2011/06/21 13:43:48 roberto Exp roberto $ ** Standard I/O (and system) library ** See Copyright Notice in lua.h */ @@ -49,7 +49,7 @@ #endif /* } */ -#define IO_PREFIX "lua_io_" +#define IO_PREFIX "_IO_" #define IO_INPUT (IO_PREFIX "input") #define IO_OUTPUT (IO_PREFIX "output")