summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/luaterp.cc
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2009-11-14 19:28:10 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2009-11-14 19:31:13 +1000
commit7c73c7d7aac507d2e6fe6a30415bfb7dc4687365 (patch)
tree6f3b57a44e5e304e38774bb42bd65d0eb292dec3 /crawl-ref/source/luaterp.cc
parentdbc4e4df085f487c0bc03364ec5c62778b064fdd (diff)
downloadcrawl-ref-7c73c7d7aac507d2e6fe6a30415bfb7dc4687365.tar.gz
crawl-ref-7c73c7d7aac507d2e6fe6a30415bfb7dc4687365.zip
Quick how-to-exit message for wizard Lua interpreter. (rob, zelgadis)
Diffstat (limited to 'crawl-ref/source/luaterp.cc')
-rw-r--r--crawl-ref/source/luaterp.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/crawl-ref/source/luaterp.cc b/crawl-ref/source/luaterp.cc
index 1ef18db9c8..38219c775c 100644
--- a/crawl-ref/source/luaterp.cc
+++ b/crawl-ref/source/luaterp.cc
@@ -106,6 +106,7 @@ static int _report(lua_State *ls, int status)
void run_clua_interpreter(lua_State *ls)
{
int status;
+ mpr("[Hit ESC to exit interpreter.]");
while ((status = _loadline(ls)) != -1)
{
if (status == 0)