diff options
Diffstat (limited to 'p/haskell-unlambda/debian/patches/unlambda_hs_charset_fix.diff')
-rw-r--r-- | p/haskell-unlambda/debian/patches/unlambda_hs_charset_fix.diff | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/p/haskell-unlambda/debian/patches/unlambda_hs_charset_fix.diff b/p/haskell-unlambda/debian/patches/unlambda_hs_charset_fix.diff new file mode 100644 index 000000000..779882ce2 --- /dev/null +++ b/p/haskell-unlambda/debian/patches/unlambda_hs_charset_fix.diff @@ -0,0 +1,18 @@ +--- a/Language/Unlambda.hs ++++ b/Language/Unlambda.hs +@@ -6,7 +6,7 @@ + This is an interpreter of the Unlambda language, written in + the pure, lazy, functional language Haskell. + +-Copyright (C) 2001 by Ørjan Johansen <oerjan@nvg.ntnu.no> ++Copyright (C) 2001 by Ørjan Johansen <oerjan@nvg.ntnu.no> + Copyright (C) 2006 by Don Stewart - http://www.cse.unsw.edu.au/~dons + + This program is free software; you can redistribute it and/or modify +@@ -141,4 +141,4 @@ + apply Pipe f = do + cur <- currentChar + apply f (case cur of Nothing -> V ; Just c -> (Dot c)) +-apply (App _ _) _ = error "Unknown application" +\ No newline at end of file ++apply (App _ _) _ = error "Unknown application" |