Dear list,

aspell6-en-6.0-0.tar.bz2's configure file --help option says that
ASPELL_PARMS is a useful option; it isn't -- ASPELL_FLAGS is used
instead to create Makefile.

Attached patch fixes the help message.

  - Dmitri.

--- Aspell.xs.orig      2006-07-03 14:46:24.000000000 -0400
+++ Aspell.xs   2006-07-03 14:46:29.000000000 -0400
@@ -54,7 +54,7 @@
 new(CLASS)
     char *CLASS
     CODE:
-        RETVAL = (Aspell_object*)safemalloc( sizeof( Aspell_object ) );
+        RETVAL = (Aspell_object*)malloc( sizeof( Aspell_object ) );
         if( RETVAL == NULL ){
             warn("unable to malloc Aspell_object");
             XSRETURN_UNDEF;
@@ -80,7 +80,7 @@
         if ( self->speller )
             delete_aspell_speller(self->speller);
 
-        safefree( (char*)self );
+        free( (char*)self );
 
 
 int
_______________________________________________
Aspell-devel mailing list
Aspell-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/aspell-devel

Reply via email to