diff options
author | obraun <obraun@FreeBSD.org> | 2003-10-23 07:14:31 +0000 |
---|---|---|
committer | obraun <obraun@FreeBSD.org> | 2003-10-23 07:14:31 +0000 |
commit | 9ee9eaed6f86ed7ea1e8753b0f27afdda04e46b7 (patch) | |
tree | 5bde976eb700c652c1c864dae8026d6d43e605b5 /devel | |
parent | 96ebda5cf167fed319ff58201d13b7c2b9d322bd (diff) | |
download | FreeBSD-ports-9ee9eaed6f86ed7ea1e8753b0f27afdda04e46b7.zip FreeBSD-ports-9ee9eaed6f86ed7ea1e8753b0f27afdda04e46b7.tar.gz |
Fix patch: DOS-CR/LF got lost in previous PR.
PR: ports/58412
Submitted by: maintainer
Prompted by: kris via bento
Diffstat (limited to 'devel')
-rw-r--r-- | devel/hs-tclhaskell-ghc/files/patch-TclPrimGhc.hs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/devel/hs-tclhaskell-ghc/files/patch-TclPrimGhc.hs b/devel/hs-tclhaskell-ghc/files/patch-TclPrimGhc.hs index bc183fc..02896d9 100644 --- a/devel/hs-tclhaskell-ghc/files/patch-TclPrimGhc.hs +++ b/devel/hs-tclhaskell-ghc/files/patch-TclPrimGhc.hs @@ -1,11 +1,11 @@ ---- TclPrimGhc.hs.orig Tue Oct 21 17:29:21 2003 -+++ TclPrimGhc.hs Tue Oct 21 17:29:43 2003 +--- TclPrimGhc.hs.orig Fri Feb 23 13:23:23 2001 ++++ TclPrimGhc.hs Thu Oct 23 09:11:54 2003 @@ -42,7 +42,7 @@ - writeElt pstr 0 str - return pstr - where -- len = Word.intToWord32 (length str + 1) -+ len = fromIntegral (length str + 1) - - writeElt addr n [] = writeCharOffAddr addr n '\0' - writeElt addr n (v :vs) = do + writeElt pstr 0 str
+ return pstr
+ where
+- len = Word.intToWord32 (length str + 1)
++ len = fromIntegral (length str + 1)
+
+ writeElt addr n [] = writeCharOffAddr addr n '\0'
+ writeElt addr n (v :vs) = do
|