summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_mapgrd.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/l_mapgrd.cc')
-rw-r--r--crawl-ref/source/l_mapgrd.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/l_mapgrd.cc b/crawl-ref/source/l_mapgrd.cc
index 0c63238c79..9431fda173 100644
--- a/crawl-ref/source/l_mapgrd.cc
+++ b/crawl-ref/source/l_mapgrd.cc
@@ -59,8 +59,8 @@ static int grd_col_get(lua_State *ls)
char buf[2];
buf[0] = *gly;
buf[1] = '\0';
-
- lua_pushstring(ls, buf);
+
+ lua_pushstring(ls, buf);
return (1);
}
@@ -95,7 +95,7 @@ void dluaopen_mapgrd(lua_State *ls)
lua_pop(ls, 1);
- // grd col table
+ // grd col table
luaL_newmetatable(ls, MAPGRD_COL_METATABLE);
lua_pushstring(ls, "__index");
lua_pushcfunction(ls, grd_col_get);