writes:
>    /usr/local/share/gnucash/scm/engine-interface.scm:241:11: In expression (p
> ointer-token-null? split): 
>    /usr/local/share/gnucash/scm/engine-interface.scm:241:11: Unbound variable
> : pointer-token-null?
> 
> Does anybody have a patch for this one?  It is *most* annoying to lose
> all ones entries when this happens.

Yes, apply that attached to c-interface.scm

thanks,
dave

Index: c-interface.scm
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/src/scm/c-interface.scm,v
retrieving revision 1.9
retrieving revision 1.9.2.1
diff -u -u -r1.9 -r1.9.2.1
--- c-interface.scm     2000/05/11 09:00:12     1.9
+++ c-interface.scm     2000/07/04 23:25:11     1.9.2.1
@@ -17,6 +17,12 @@
 
 (require 'hash-table)
 
+
+;; Provides pointer-token-null? if needed (g-wrap >= 0.9.4 doesn't provide)
+(if (not (defined? 'pointer-token-null?))
+   (define (pointer-token-null? ptr)
+     (eq? ptr #f)))
+
 (define (gnc:error->string tag args)
   (define (write-error port)
     (if (and (list? args) (not (null? args)))

--
Gnucash Developer's List
To unsubscribe send empty email to: [EMAIL PROTECTED]

Reply via email to