summaryrefslogtreecommitdiff
path: root/iolib.c
diff options
context:
space:
mode:
Diffstat (limited to 'iolib.c')
-rw-r--r--iolib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/iolib.c b/iolib.c
index 2cfb8af7..13f9a31f 100644
--- a/iolib.c
+++ b/iolib.c
@@ -3,7 +3,7 @@
3** Input/output library to LUA 3** Input/output library to LUA
4*/ 4*/
5 5
6char *rcs_iolib="$Id: iolib.c,v 1.15 1994/11/13 14:54:18 roberto Exp roberto $"; 6char *rcs_iolib="$Id: iolib.c,v 1.16 1994/11/16 17:38:08 roberto Stab roberto $";
7 7
8#include <stdio.h> 8#include <stdio.h>
9#include <ctype.h> 9#include <ctype.h>
@@ -585,7 +585,7 @@ static void io_debug (void)
585 while (1) 585 while (1)
586 { 586 {
587 char buffer[250]; 587 char buffer[250];
588 printf("lua_debug> "); 588 fprintf(stderr, "lua_debug> ");
589 if (gets(buffer) == 0) return; 589 if (gets(buffer) == 0) return;
590 if (strcmp(buffer, "cont") == 0) return; 590 if (strcmp(buffer, "cont") == 0) return;
591 lua_dostring(buffer); 591 lua_dostring(buffer);