diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-21 11:57:48 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-21 11:57:48 -0300 |
commit | 81a8845e4f10851693cbe438520a4c07d347a731 (patch) | |
tree | a6ef508fe25694597f618a595a60960ef6ef2e4f | |
parent | 6c283b2f4f8398322e7a9a62ec8e131852b4e015 (diff) | |
download | lua-81a8845e4f10851693cbe438520a4c07d347a731.tar.gz lua-81a8845e4f10851693cbe438520a4c07d347a731.tar.bz2 lua-81a8845e4f10851693cbe438520a4c07d347a731.zip |
detail
-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.15 2002/08/06 18:01:50 roberto Exp roberto $ | 2 | ** $Id: liolib.c,v 2.16 2002/08/16 20:02:13 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 | */ |
@@ -122,7 +122,7 @@ static int io_open (lua_State *L) { | |||
122 | 122 | ||
123 | 123 | ||
124 | static int io_popen (lua_State *L) { | 124 | static int io_popen (lua_State *L) { |
125 | #ifndef POPEN | 125 | #ifndef USE_POPEN |
126 | luaL_error(L, "`popen' not supported"); | 126 | luaL_error(L, "`popen' not supported"); |
127 | return 0; | 127 | return 0; |
128 | #else | 128 | #else |