summaryrefslogtreecommitdiff
path: root/cokiki.hs
diff options
context:
space:
mode:
authorJames Crayne <jim.crayne@gmail.com>2016-04-25 21:30:10 -0400
committerJames Crayne <jim.crayne@gmail.com>2016-04-25 21:30:10 -0400
commitc48ab8e04524f784e580537dd0e1cf018371b5ea (patch)
treeacdba77ceb6b1539032c752014cc7158be797c37 /cokiki.hs
parent334525e552b1da967c9f5b0576473c13bd2fd896 (diff)
fix build (base==4.7.*)
Diffstat (limited to 'cokiki.hs')
-rw-r--r--cokiki.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cokiki.hs b/cokiki.hs
index 18fdd9f..1d57ca9 100644
--- a/cokiki.hs
+++ b/cokiki.hs
@@ -115,7 +115,7 @@ sshIsDirective d ls =
115 isSpaceTok "" = True 115 isSpaceTok "" = True
116 isSpaceTok b = isSpace $ L8.head b 116 isSpaceTok b = isSpace $ L8.head b
117 117
118#if !MIN_VERSION_base(4,8,0) 118#if !MIN_VERSION_base(4,7,0)
119bool :: a -> a -> Bool -> a 119bool :: a -> a -> Bool -> a
120bool f _ False = f 120bool f _ False = f
121bool _ t True = t 121bool _ t True = t