Alan Orndorff writes:
> Running Gnucash 1.4.1 Gnome version,
> 
> Open checking account,type in the date, type in the type, select
> a memorized account by typing the first couple letters and then
> press "tab" after autofill fills in the rest and then :
> 
> gnucash
> /usr/local/share/gnucash/scm/engine-interface.scm:241:11: In expression
> (pointer-token-null? split):
> /usr/local/share/gnucash/scm/engine-interface.scm:241:11: Unbound
> variable: pointer-token-null?
> 
> another way to recreate this is to select a transaction and then press
> the "duplicate" button.
> 
> any ideas?

Yes, GnuCash 1.4.1 doesn't work with g-wrap 0.9.4. Sorry this
wasn't made more clear. You can either downgrade to g-wrap 0.9.1
or apply the attached patch to c-interface.scm. GnuCash 1.4.2
will fix this problem.

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