diff options
-rw-r--r-- | ldo.c | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.c,v 1.23 1998/01/28 17:47:05 roberto Exp roberto $ | 2 | ** $Id: ldo.c,v 1.24 1998/01/29 15:59:35 roberto Exp roberto $ |
3 | ** Stack and Call structure of Lua | 3 | ** Stack and Call structure of Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -411,13 +411,11 @@ int lua_dostring (char *str) | |||
411 | } | 411 | } |
412 | 412 | ||
413 | 413 | ||
414 | #if 0 | 414 | int lua_dobuffer (char *buff, int size) { |
415 | int lua_dobuffer (char *buff, int size) | ||
416 | { | ||
417 | int status; | 415 | int status; |
418 | ZIO z; | 416 | ZIO z; |
419 | luaZ_mopen(&z, buff, size, "(buffer)"); | 417 | luaZ_mopen(&z, buff, size, "(buffer)"); |
420 | status = do_main(&z, 1); | 418 | status = do_main(&z, 1); |
421 | return status; | 419 | return status; |
422 | } | 420 | } |
423 | #endif | 421 | |