summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_dgn.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-07-05 22:01:58 -0400
committerNeil Moore <neil@s-z.org>2014-07-05 22:21:28 -0400
commit3d2a0df9fdb6e46349e48701897ec4acec95a548 (patch)
tree8caba590262b4763184fef69dc1558d860667b89 /crawl-ref/source/l_dgn.cc
parentceea6a155e3bee001770670fc9f21dfe9ab668d8 (diff)
downloadcrawl-ref-3d2a0df9fdb6e46349e48701897ec4acec95a548.tar.gz
crawl-ref-3d2a0df9fdb6e46349e48701897ec4acec95a548.zip
Reformat.
Mostly by joining short lines in places where that would let us remove braces.
Diffstat (limited to 'crawl-ref/source/l_dgn.cc')
-rw-r--r--crawl-ref/source/l_dgn.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/l_dgn.cc b/crawl-ref/source/l_dgn.cc
index b820e77b01..21cc1ff9fb 100644
--- a/crawl-ref/source/l_dgn.cc
+++ b/crawl-ref/source/l_dgn.cc
@@ -1530,8 +1530,7 @@ LUAFN(dgn_with_map_anchors)
{
if (lua_isnumber(ls, i) && lua_isnumber(ls, i + 1))
{
- map_anchor_points.push_back(
- coord_def(lua_tointeger(ls, i),
+ map_anchor_points.push_back(coord_def(lua_tointeger(ls, i),
lua_tointeger(ls, i + 1)));
}
}