summaryrefslogtreecommitdiffstats
path: root/StackSet.hs
diff options
context:
space:
mode:
authorDon Stewart <dons@cse.unsw.edu.au>2007-04-19 00:47:25 +0200
committerDon Stewart <dons@cse.unsw.edu.au>2007-04-19 00:47:25 +0200
commitdebb8785f27d176f5e6ea8b471c606b07feaae8b (patch)
tree902f59b074ce310c8984f4ec5fdc1cf376dcfcce /StackSet.hs
parent52bbce6a3e6de7cde3f5246d64867f8ba446c647 (diff)
downloadmetatile-debb8785f27d176f5e6ea8b471c606b07feaae8b.tar
metatile-debb8785f27d176f5e6ea8b471c606b07feaae8b.zip
tweak loc count to match count_lines script
darcs-hash:20070418224725-9c5c1-e885b1392c8f6aaa1ccd5c5cbcdc9c41b29b6b6a
Diffstat (limited to 'StackSet.hs')
-rw-r--r--StackSet.hs10
1 files changed, 5 insertions, 5 deletions
diff --git a/StackSet.hs b/StackSet.hs
index a7bc376..f0168d1 100644
--- a/StackSet.hs
+++ b/StackSet.hs
@@ -239,12 +239,12 @@ swap a b xs
swap _ _ xs = xs -- do nothing
-{-
+--
-- cycling:
-promote w = w { stacks = M.adjust next (current w) (stacks w) }
- where next [] = []
- next xs = last xs : init xs
--}
+-- promote w = w { stacks = M.adjust next (current w) (stacks w) }
+-- where next [] = []
+-- next xs = last xs : init xs
+--
-- |
elemAfter :: Eq a => a -> [a] -> Maybe a