Renaming for clarity.

This commit is contained in:
slembcke 2019-12-01 21:32:10 -06:00
parent ad998053e4
commit b38facfd9f
3 changed files with 4 additions and 3 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
debugger.c
debugger.c
embed/debugger_lua.c

View File

@ -34,7 +34,7 @@ local c_src = [[/*
#include <lua.h>
#include <lauxlib.h>
#include "debugger.h"
#include "debugger_lua.h"
static const char *DEBUGGER_SRC = ]]..lua_src..[[;
@ -117,4 +117,4 @@ int dbg_pcall(lua_State *lua, int nargs, int nresults, int msgh){
}
]]
io.open("embed/debugger.c", "w"):write(c_src)
io.open("embed/debugger_lua.c", "w"):write(c_src)