diff options
author | P. J. McDermott <pj@pehjota.net> | 2015-08-25 13:56:38 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2015-08-25 13:56:38 (EDT) |
commit | f478d1111f2c1cfe06218f7fdb043b75833793d9 (patch) | |
tree | 79c50ab6eabb197ec63b990bcb72411bf1c5b29f /src/script.c | |
parent | c96127e9c318242c5967fff24bd711194de7ae0d (diff) | |
download | overworld-rpg-f478d1111f2c1cfe06218f7fdb043b75833793d9.zip overworld-rpg-f478d1111f2c1cfe06218f7fdb043b75833793d9.tar.gz overworld-rpg-f478d1111f2c1cfe06218f7fdb043b75833793d9.tar.bz2 |
src/script.[ch]: Remove
Diffstat (limited to 'src/script.c')
-rw-r--r-- | src/script.c | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/src/script.c b/src/script.c deleted file mode 100644 index 9341d8a..0000000 --- a/src/script.c +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (C) 2013 Patrick "P. J." McDermott - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this program. If not, see - * <http://www.gnu.org/licenses/>. - */ - -#include <stdlib.h> -#include <lua.h> -#include "logging.h" -#include "script.h" - -/* LUA_OK is defined in Lua 5.2 but not 5.1. */ -#ifndef LUA_OK -#define LUA_OK 0 -#endif - -void -script_call(struct script *s, const char *func) -{ - lua_getglobal(s->lua_state, func); - if (lua_pcall(s->lua_state, 0, 0, 0) != LUA_OK) { - err(1, "Error calling function: %s\n", - lua_tostring(s->lua_state, -1)); - } -} |