aboutsummaryrefslogtreecommitdiffstats
path: root/tests/loc.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
commit21c67ffb516d128755366a32f66d4cfb12360228 (patch)
tree902f59b074ce310c8984f4ec5fdc1cf376dcfcce /tests/loc.hs
parent548f4bad33b2aaa427f25126a92b12f3ab5268fe (diff)
downloadxmonad-21c67ffb516d128755366a32f66d4cfb12360228.tar.gz
xmonad-21c67ffb516d128755366a32f66d4cfb12360228.tar.xz
xmonad-21c67ffb516d128755366a32f66d4cfb12360228.zip
tweak loc count to match count_lines script
darcs-hash:20070418224725-9c5c1-e885b1392c8f6aaa1ccd5c5cbcdc9c41b29b6b6a.gz
Diffstat (limited to 'tests/loc.hs')
-rw-r--r--tests/loc.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/loc.hs b/tests/loc.hs
index 7911b9a..289c629 100644
--- a/tests/loc.hs
+++ b/tests/loc.hs
@@ -2,7 +2,7 @@ import Control.Monad
import System.Exit
main = do foo <- getContents
- let actual_loc = filter isntcomment $
+ let actual_loc = filter (not.null) $ filter isntcomment $
map (dropWhile (==' ')) $ lines foo
loc = length actual_loc
putStrLn $ show loc
@@ -12,4 +12,5 @@ main = do foo <- getContents
isntcomment "" = False
isntcomment ('-':'-':_) = False
+isntcomment ('{':'-':_) = False -- pragmas
isntcomment _ = True