Revert r18352, "Bug #593906: Fix crash at creating account report"

The bugfix was using the guile function "@" which apparently isn't available
on quite a number of platforms, including the Windows guile-1.6.8 which
we're shipping in our windows binary. So we need to fix the original bug
in a different way without the "@" function.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18360 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming 2009-10-03 11:33:31 +00:00
parent 3a86d497c8
commit 8292c87e1a

View File

@ -157,9 +157,6 @@
(lambda (x) (resolve-module (append '(gnucash report standard-reports) (list x)))) (lambda (x) (resolve-module (append '(gnucash report standard-reports) (list x))))
(get-report-list)) (get-report-list))
(define gnc:register-report-create-internal (@ (gnucash report standard-reports register)
gnc:register-report-create-internal))
(use-modules (gnucash gnc-module)) (use-modules (gnucash gnc-module))
(gnc:module-load "gnucash/engine" 0) (gnc:module-load "gnucash/engine" 0)