From 1ef14beacf757bcb2e9b87d218d98c9637cc4d62 Mon Sep 17 00:00:00 2001 From: panne Date: Mon, 19 Jun 2000 21:28:00 +0000 Subject: [PATCH] [project @ 2000-06-19 21:28:00 by panne] * makeForeignObj => newForeignObj * Tried to make type mapping table look less strange, but this succeeded only a little bit. Could somebody else have a look? --- docs/ffi.sgml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/docs/ffi.sgml b/docs/ffi.sgml index e59ff9e..35e6d76 100644 --- a/docs/ffi.sgml +++ b/docs/ffi.sgml @@ -610,9 +610,7 @@ defines the mapping between Haskell and C types. Mapping of Haskell types to C types - - - + @@ -748,10 +746,6 @@ defines the mapping between Haskell and C types. void* (8) - - - - @@ -932,7 +926,7 @@ foreign import "mumble" mumble :: ForeignObj -> IO () f :: Addr -> IO () f ptr = do - fo <- makeForeignObj ptr myFinalizer + fo <- newForeignObj ptr myFinalizer mumble fo -- 1.7.10.4