summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-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