[Pkg-haskell-commits] darcs: lhs2tex: Closes: 628319: Remove n-plus-k-patterns

Joachim Breitner mail at joachim-breitner.de
Thu Jun 2 18:46:51 UTC 2011


Thu Jun  2 18:42:14 UTC 2011  Joachim Breitner <mail at joachim-breitner.de>
  * Closes: 628319: Remove n-plus-k-patterns
  Ignore-this: be8476014f8ef464168dd7e5af7189b

    M ./changelog +3
    A ./patches/no-n-plus-k-pattern
    M ./patches/series +1

Thu Jun  2 18:42:14 UTC 2011  Joachim Breitner <mail at joachim-breitner.de>
  * Closes: 628319: Remove n-plus-k-patterns
  Ignore-this: be8476014f8ef464168dd7e5af7189b
diff -rN -u old-lhs2tex//changelog new-lhs2tex//changelog
--- old-lhs2tex//changelog	2011-06-02 18:46:51.377304734 +0000
+++ new-lhs2tex//changelog	2011-06-02 18:46:51.389152990 +0000
@@ -6,6 +6,9 @@
   [ Marco Silva ]
   * Use ghc instead of ghc6
 
+  [ Joachim Breitner ]
+  * Remove n-plus-k-patterns (Closes: #628319) 
+
  -- Joachim Breitner <nomeata at debian.org>  Sat, 01 May 2010 22:10:46 +0200
 
 lhs2tex (1.15-3) unstable; urgency=low
diff -rN -u old-lhs2tex//patches/no-n-plus-k-pattern new-lhs2tex//patches/no-n-plus-k-pattern
--- old-lhs2tex//patches/no-n-plus-k-pattern	1970-01-01 00:00:00.000000000 +0000
+++ new-lhs2tex//patches/no-n-plus-k-pattern	2011-06-02 18:46:51.385276743 +0000
@@ -0,0 +1,13 @@
+Index: lhs2tex-1.15/HsLexer.lhs
+===================================================================
+--- lhs2tex-1.15.orig/HsLexer.lhs	2011-06-02 20:34:39.000000000 +0200
++++ lhs2tex-1.15/HsLexer.lhs	2011-06-02 20:34:49.000000000 +0200
+@@ -183,7 +183,7 @@
+ > nested 0     ('#' : '-' : '}' : s)
+ >                               =  ([], '#':'-':'}':s)
+ > nested 0     ('-' : '}' : s)  =  ([], '-':'}':s)
+-> nested (n+1) ('-' : '}' : s)  =  '-' <| '}' <| nested n s
++> nested n     ('-' : '}' : s)  =  '-' <| '}' <| nested (n - 1) s
+ > nested n     ('{' : '-' : s)  =  '{' <| '-' <| nested (n + 1) s
+ > nested n     (c : s)          =  c <| nested n s
+ 
diff -rN -u old-lhs2tex//patches/series new-lhs2tex//patches/series
--- old-lhs2tex//patches/series	2011-06-02 18:46:51.369179054 +0000
+++ new-lhs2tex//patches/series	2011-06-02 18:46:51.397296839 +0000
@@ -1,3 +1,4 @@
 01_always_install_polytable.patch
 10_fix_bashims.patch
 no-utf8-string.patch
+no-n-plus-k-pattern





More information about the Pkg-haskell-commits mailing list