Hi all, congrats on getting your server back up!
And kudos for developing such a cool program.

I have several patches to what I believe is the latest version of
gnucash. I'm using the anonymous cvs server at cvs.gnucash.org
(207.170.121.1), so if this is not correct, please let me know.

I'm not sure if patches are sent to this list or not, so I'll just
send a small one for now. The patch below fixes a problem that occurs
when there is an error when processing command line arguments in the
scheme code. In that case, gnc:shutdown will be called before
hooks.scm is loaded. However, gnc:shutdown uses routines from
hooks.scm.

I also have a question. Is the QIF importing code in QIFIO.c being
phased out? I have some patches for QIFIO.c that fix many (but not
all) of the problems I was having importing QIF files. With my
patches, I can import my checking and savings accounts with duplicate
accounts merged correctly and duplicate transactions eliminated.

thanks,
Dave Peticolas


Index: src/scm/main.scm
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/src/scm/main.scm,v
retrieving revision 1.3
diff -u -r1.3 main.scm
--- main.scm    1999/08/04 05:04:32     1.3
+++ main.scm    1999/10/11 23:51:47
@@ -6,7 +6,6 @@
   
   ;; Now we can load a bunch of files.
   
-  (gnc:load "hooks.scm")
   (gnc:load "doc.scm")
   (gnc:load "extensions.scm")      ; Should this be here or somewhere else?
   (gnc:load "text-export.scm")
Index: src/scm/startup.scm
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/src/scm/startup.scm,v
retrieving revision 1.9
diff -u -r1.9 startup.scm
--- startup.scm 1999/07/06 06:04:39     1.9
+++ startup.scm 1999/10/11 23:51:47
@@ -11,4 +11,5 @@
 (gnc:load "prefs.scm")
 (gnc:load "command-line.scm")
 (gnc:load "convenience-wrappers.scm")
+(gnc:load "hooks.scm")
 (gnc:load "main.scm")

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

Reply via email to