"lua_debug" now is exported through debug interface (luadebug.h)

This commit is contained in:
Roberto Ierusalimschy 1996-02-07 12:14:40 -02:00
parent 995a9f7188
commit 56fb06b6f5
3 changed files with 4 additions and 5 deletions

View File

@ -5,7 +5,7 @@
** Also provides some predefined lua functions.
*/
char *rcs_inout="$Id: inout.c,v 2.27 1996/01/26 14:05:28 roberto Exp roberto $";
char *rcs_inout="$Id: inout.c,v 2.28 1996/01/26 16:52:47 roberto Exp roberto $";
#include <stdio.h>
#include <stdlib.h>
@ -29,7 +29,6 @@ char *rcs_inout="$Id: inout.c,v 2.27 1996/01/26 14:05:28 roberto Exp roberto $";
/* Exported variables */
Word lua_linenumber;
Bool lua_debug = 0;
char *lua_parsedfile;

View File

@ -1,5 +1,5 @@
/*
** $Id: inout.h,v 1.11 1996/01/22 17:40:00 roberto Exp roberto $
** $Id: inout.h,v 1.12 1996/01/26 14:05:28 roberto Exp roberto $
*/
@ -10,7 +10,6 @@
extern Word lua_linenumber;
extern Bool lua_debug;
extern Word lua_debugline;
extern char *lua_parsedfile;

3
lex.c
View File

@ -1,4 +1,4 @@
char *rcs_lex = "$Id: lex.c,v 2.21 1995/11/16 20:46:24 roberto Exp roberto $";
char *rcs_lex = "$Id: lex.c,v 2.22 1995/12/21 16:14:04 roberto Exp roberto $";
#include <ctype.h>
@ -10,6 +10,7 @@ char *rcs_lex = "$Id: lex.c,v 2.21 1995/11/16 20:46:24 roberto Exp roberto $";
#include "table.h"
#include "opcode.h"
#include "inout.h"
#include "luadebug.h"
#include "parser.h"
#include "ugly.h"