summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_mapgrd.cc
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-20 14:13:42 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-20 14:13:42 -0700
commitd6ea58e6f13e85f4121ab488c09721f6d388a977 (patch)
tree0eceed1e0820c08b3dc995002ccc32f112e084ba /crawl-ref/source/l_mapgrd.cc
parentc0d232cd853f335b240b125380ed827f52c080ca (diff)
downloadcrawl-ref-d6ea58e6f13e85f4121ab488c09721f6d388a977.tar.gz
crawl-ref-d6ea58e6f13e85f4121ab488c09721f6d388a977.zip
cosmetic: strip trailing whitespace
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
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);