diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-06-27 16:42:31 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-06-27 16:42:31 -0300 |
commit | 594220c6242072529f27132034619bf0c6dd4474 (patch) | |
tree | 2e5892a72c8269ebafc49af0a45566fdc609935c /liolib.c | |
parent | 3dd68624dc0778ba52aaeb3e6677fb865405b841 (diff) | |
download | lua-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||