summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_dgn.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-06-21 11:07:15 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-06-21 11:07:15 +0200
commitc5a66a46ca0693f3b2ad6e47866b03d772cf34fd (patch)
treeb74be6feedc08ed50f3936d05c2c03b6dca32eeb /crawl-ref/source/l_dgn.cc
parent978f43a9532dfce7c0b00830858e7f03b5ae6a0b (diff)
downloadcrawl-ref-c5a66a46ca0693f3b2ad6e47866b03d772cf34fd.tar.gz
crawl-ref-c5a66a46ca0693f3b2ad6e47866b03d772cf34fd.zip
Remove spaces between function identifiers and arguments lists.
Diffstat (limited to 'crawl-ref/source/l_dgn.cc')
-rw-r--r--crawl-ref/source/l_dgn.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/l_dgn.cc b/crawl-ref/source/l_dgn.cc
index 00d74d670d..2e3267dce7 100644
--- a/crawl-ref/source/l_dgn.cc
+++ b/crawl-ref/source/l_dgn.cc
@@ -936,7 +936,7 @@ static int dgn_fprop_changed(lua_State *ls)
return (1);
}
-static int dgn_fprop_at (lua_State *ls)
+static int dgn_fprop_at(lua_State *ls)
{
feature_property_type prop = FPROP_NONE;
@@ -955,7 +955,7 @@ static int dgn_fprop_at (lua_State *ls)
return (1);
}
-static int dgn_cloud_at (lua_State *ls)
+static int dgn_cloud_at(lua_State *ls)
{
COORDS(c, 1, 2);
@@ -1001,7 +1001,7 @@ static int lua_dgn_set_branch_epilogue(lua_State *ls)
// when the maps are stored. This relies on the individual map Lua prelude
// being executed whenever maps are loaded and verified, which means that
// the next time the map is loaded, border_fill_type is already stored.
-static int lua_dgn_set_border_fill_type (lua_State *ls)
+static int lua_dgn_set_border_fill_type(lua_State *ls)
{
MAP(ls, 1, map);
if (lua_gettop(ls) != 2)