cgrep 6.6.12 → 6.6.13
raw patch · 3 files changed
+8/−2 lines, 3 files
Files
- README.md +1/−1
- cgrep.cabal +1/−1
- src/CGrep/Output.hs +6/−0
README.md view
@@ -7,7 +7,7 @@ Usage ----- -Cgrep 6.6.11. Usage: cgrep [OPTION] [PATTERN] files...+Cgrep 6.6.13. Usage: cgrep [OPTION] [PATTERN] files... cgrep [OPTIONS] [ITEM]
cgrep.cabal view
@@ -1,6 +1,6 @@ Name: cgrep Description: Cgrep: a context-aware grep for source codes-Version: 6.6.12+Version: 6.6.13 Synopsis: Command line tool Homepage: http://awgn.github.io/cgrep/ License: GPL-2
src/CGrep/Output.hs view
@@ -15,6 +15,8 @@ -- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -- +{-# LANGUAGE CPP #-}+ module CGrep.Output (Output(..), mkOutput, putPrettyHeader,@@ -33,6 +35,10 @@ import Control.Monad.Trans.Reader import Control.Monad.IO.Class++#if __GLASGOW_HASKELL__ < 710+import Control.Applicative+#endif import Data.Maybe import Data.List