packages feed

lhs2TeX-hl 0.1.3.2 → 0.1.3.3

raw patch · 4 files changed

+16/−9 lines, 4 filesdep ~haskell-src-exts

Dependency ranges changed: haskell-src-exts

Files

README.asciidoc view
@@ -143,19 +143,21 @@  CHANGES --------1.3.2::+0.1.3.3::+  * Fixed build error + cabal things+0.1.3.2::   * Removed the MissingH dependency.-1.3.1::+0.1.3.1::   * Added the file Language.Markup-1.3.0::+0.1.3.0::   * Added automatic rewrite rules, see section `Automatic markup'.-1.2.2::+0.1.2.2::   * And classes are now also written to the output file, somewhere I was     sleeping during all this. :)-1.2.1::  +0.1.2.1::     * Fixed a regression, detection of language pragmas was apparently broken and     now they aren't anymore.-1.2.0::+0.1.2.0::   * Hopefully the ``ambiguous infix operator'' error shouldn't occur that often     anymore.   * Removed the AGDA dependency for until it actually works.
lhs2TeX-hl.cabal view
@@ -1,5 +1,5 @@ Name:               lhs2TeX-hl-Version:            0.1.3.2+Version:            0.1.3.3 Cabal-Version:      >= 1.6 License:            MIT Author:             Alessandro Vermeulen <me@alessandrovermeulen.me>@@ -19,12 +19,15 @@ License-file:       LICENSE Homepage:           http://spockz.github.com/lhs2texhl/ bug-reports:        http://github.com/spockz/lhs2texhl/issues+source-repository head+  type:             git+  location:         https://github.com/spockz/lhs2texhl  Executable lhs2TeX-hl   Main-Is:          LiterateHighlighter.hs   Build-Depends:    base >= 4 && <= 5                   , haskell98-                  , haskell-src-exts >= 1.10.2+                  , haskell-src-exts == 1.11.1                   , syb >= 0.1.0.1                   , cmdargs >= 0.1   hs-source-dirs:   src
src/Language/LaTeX.hs view
@@ -32,6 +32,8 @@               . replace "<=" "\\ \\leq\\ "               . replace ">=" "\\ \\geq\\ "               . replace ">>" "\\ \\sequ\\ "+              . replace ">>>" "\\ \\ggg\\ "+              . replace "<<<" "\\ \\lll\\ "                             . replace ">>=" "\\ \\bind\\ "               . replace "=<<" "\\ \\rbind\\ "               . replace "undefined" "\\bot\\  "
src/Literate/Haskell.hs view
@@ -14,7 +14,7 @@  newtype M = M Module deriving (Typeable, Data) -parseFile fp = parseFileWithMode (defaultParseMode { fixities      = baseFixities+parseFile fp = parseFileWithMode (defaultParseMode { fixities      = Just baseFixities                                                    , parseFilename = fp                                                          }                                   )