summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/luaterp.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-31 11:06:33 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-31 11:06:33 -0500
commit11ab2028277167a5ed9592ff13d4090ce4d60109 (patch)
tree7fd104a4f7f13f32e6340fafd1857a117a351e62 /crawl-ref/source/luaterp.cc
parent0299c91350a8631d8042eeb8ca8ba088a45ce32b (diff)
downloadcrawl-ref-11ab2028277167a5ed9592ff13d4090ce4d60109.tar.gz
crawl-ref-11ab2028277167a5ed9592ff13d4090ce4d60109.zip
Add whitespace fixes.
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 6e6fcad3d6..8fb68448ec 100644
--- a/crawl-ref/source/luaterp.cc
+++ b/crawl-ref/source/luaterp.cc
@@ -71,7 +71,7 @@ static int _loadline(lua_State *ls)
status = luaL_loadbuffer(ls, lua_tostring(ls, 1),
lua_strlen(ls, 1), "=terp");
- if (!_incomplete(ls, status))
+ if (!_incomplete(ls, status))
break;
if (!_pushline(ls, 0))
return -1;
@@ -120,7 +120,7 @@ void run_clua_interpreter(lua_State *ls)
lua_insert(ls, 1);
if (lua_pcall(ls, lua_gettop(ls) - 1, 0, 0) != 0)
{
- mprf(MSGCH_ERROR, "error calling __echo (%s)",
+ mprf(MSGCH_ERROR, "error calling __echo (%s)",
lua_tostring(ls, -1));
}
}