From 6e6d44f5671a0371f9dd5494bc90a47e32b523ea Mon Sep 17 00:00:00 2001 From: Christopher Lam Date: Sat, 17 Dec 2022 21:22:15 +0800 Subject: [PATCH] [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 --- bindings/guile/options.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/guile/options.scm b/bindings/guile/options.scm index 5108ab3c8e..458991f044 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.")