summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/test
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-04-20 02:59:55 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-04-20 02:59:55 +0200
commit9716a531a19f089821689a32910f9f5bf2864fe4 (patch)
tree31ca9015a5a01858ffa2265a918d5840d3cb214a /crawl-ref/source/test
parente4229a39db2ca90b9ac7ba7397f551c27f90571e (diff)
downloadcrawl-ref-9716a531a19f089821689a32910f9f5bf2864fe4.tar.gz
crawl-ref-9716a531a19f089821689a32910f9f5bf2864fe4.zip
Use a space after control statements.
Diffstat (limited to 'crawl-ref/source/test')
-rw-r--r--crawl-ref/source/test/findray.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/test/findray.lua b/crawl-ref/source/test/findray.lua
index 1bb423cdf4..328c2393be 100644
--- a/crawl-ref/source/test/findray.lua
+++ b/crawl-ref/source/test/findray.lua
@@ -44,7 +44,7 @@ local function test_findray()
ray:advance()
rx, ry = ray:pos()
ray_p = dgn.point(rx, ry)
- while(ray_p ~= p) do
+ while (ray_p ~= p) do
if feat.is_opaque(rx, ry) then
dgn.fprop_changed(x, y, "highlight")
debug.dump_map(FAILMAP)