aboutsummaryrefslogtreecommitdiff
path: root/liolib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-06-27 16:42:31 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-06-27 16:42:31 -0300
commit594220c6242072529f27132034619bf0c6dd4474 (patch)
tree2e5892a72c8269ebafc49af0a45566fdc609935c /liolib.c
parent3dd68624dc0778ba52aaeb3e6677fb865405b841 (diff)
downloadlua-594220c6242072529f27132034619bf0c6dd4474.tar.gz
lua-594220c6242072529f27132034619bf0c6dd4474.tar.bz2
lua-594220c6242072529f27132034619bf0c6dd4474.zip
use standard "underscore + uppercases" for reserved keys in the registry
Diffstat (limited to 'liolib.c')
-rw-r--r--liolib.c4
1 files 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 @@
1/* 1/*
2** $Id: liolib.c,v 2.99 2011/03/03 16:34:46 roberto Exp roberto $ 2** $Id: liolib.c,v 2.100 2011/06/21 13:43:48 roberto Exp roberto $
3** Standard I/O (and system) library 3** Standard I/O (and system) library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -49,7 +49,7 @@
49#endif /* } */ 49#endif /* } */
50 50
51 51
52#define IO_PREFIX "lua_io_" 52#define IO_PREFIX "_IO_"
53#define IO_INPUT (IO_PREFIX "input") 53#define IO_INPUT (IO_PREFIX "input")
54#define IO_OUTPUT (IO_PREFIX "output") 54#define IO_OUTPUT (IO_PREFIX "output")
55 55