summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/luaterp.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-03-20 16:08:01 +0100
committerAdam Borowski <kilobyte@angband.pl>2012-03-21 00:20:47 +0100
commit7dd5c5871da014673df453c9c8bc9053344b090d (patch)
treec0600d40ac5c771f18dd375021f934007da5f2aa /crawl-ref/source/luaterp.cc
parent1730436e02529746fe5a69a1b1f593eec5ad53bc (diff)
downloadcrawl-ref-7dd5c5871da014673df453c9c8bc9053344b090d.tar.gz
crawl-ref-7dd5c5871da014673df453c9c8bc9053344b090d.zip
Make another bunch of functions static or deleted.
Looks like get_XXX_path and the like in files.cc could use some drastic simplification, or perhaps even a nuking and rewrite.
Diffstat (limited to 'crawl-ref/source/luaterp.cc')
-rw-r--r--crawl-ref/source/luaterp.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/luaterp.cc b/crawl-ref/source/luaterp.cc
index 4eec3935d1..a2fa6832a7 100644
--- a/crawl-ref/source/luaterp.cc
+++ b/crawl-ref/source/luaterp.cc
@@ -109,7 +109,7 @@ static int _report(lua_State *ls, int status)
static bool _luaterp_running = false;
-void run_clua_interpreter(lua_State *ls)
+static void _run_clua_interpreter(lua_State *ls)
{
_luaterp_running = true;
@@ -156,7 +156,7 @@ void debug_terp_dlua()
}
_loaded_terp_files = true;
}
- run_clua_interpreter(dlua);
+ _run_clua_interpreter(dlua);
}
#endif