gnucash master: [options.scm] typo fix - no commas needed in guile

Christopher Lam clam at code.gnucash.org
Sat Dec 17 08:24:31 EST 2022


Updated	 via  https://github.com/Gnucash/gnucash/commit/6e6d44f5 (commit)
	from  https://github.com/Gnucash/gnucash/commit/68dabea1 (commit)



commit 6e6d44f5671a0371f9dd5494bc90a47e32b523ea
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Sat Dec 17 21:22:15 2022 +0800

    [options.scm] typo fix - no commas needed in guile
    
    also the following symbols are also not accessible from scheme.
    
    GncOptionUIType-TAX_TABLE
    GncOptionUIType-DATE_FORMAT

diff --git a/bindings/guile/options.scm b/bindings/guile/options.scm
index 5108ab3c8..458991f04 100644
--- a/bindings/guile/options.scm
+++ b/bindings/guile/options.scm
@@ -307,7 +307,7 @@
   (gnc-make-qofinstance-option section name key docstring default (GncOptionUIType-TAX_TABLE)))
 (define-public (gnc:make-counter-option section name key docstring default)
   (issue-deprecation-warning "gnc:make-number-range-option is deprecated. Make and register the option in one command with gnc-register-number-range-option.")
-  (gnc-make-range-value-option section name key docstring default 0.0 999999999.0, 1.0))
+  (gnc-make-range-value-option section name key docstring default 0.0 999999999.0 1.0))
 
 (define-public (gnc:make-counter-format-option section name key docstring default)
   (issue-deprecation-warning "gnc:make-counter-format-option is deprecated. Make and register the option in one command with gnc-register-counter-format-option.")



Summary of changes:
 bindings/guile/options.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



More information about the gnucash-changes mailing list