mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-26 02:40:43 -06:00
Use original guile variable names changed in #1073
The changes09296dfb96
,1373233cd0
and189db58e6
had caused inconsistencies. Best restore original guile variable names using underscore, bound to strings instead of functions returning strings.
This commit is contained in:
parent
189db58e69
commit
cf1282501e
@ -37,8 +37,8 @@
|
||||
(export account-full-name<?)
|
||||
(export accounts-get-children-depth)
|
||||
|
||||
(define-public GNC-COMMODITY-NS-CURRENCY "CURRENCY")
|
||||
(define-public GNC-COMMODITY-NS-NONCURRENCY (gettext "ALL NON-CURRENCY"))
|
||||
(define-public GNC_COMMODITY_NS_CURRENCY "CURRENCY")
|
||||
(define-public GNC_COMMODITY_NS_NONCURRENCY (gettext "ALL NON-CURRENCY"))
|
||||
|
||||
(define (gnc-pricedb-lookup-latest-before-t64 . args)
|
||||
(issue-deprecation-warning "gnc-pricedb-lookup-latest-before-t64 has been renamed to gnc-pricedb-lookup-nearest-before-t64")
|
||||
|
@ -736,7 +736,7 @@
|
||||
;; compatible with the QIF type?
|
||||
(and (string=? s (caddr elt))
|
||||
(not (and (string? qif-type)
|
||||
(string=? (GNC-COMMODITY-NS-NONCURRENCY)
|
||||
(string=? GNC_COMMODITY_NS_NONCURRENCY
|
||||
(cadr elt))
|
||||
(or (string-ci=? qif-type "stock")
|
||||
(string-ci=? qif-type "etf"))))))
|
||||
@ -745,7 +745,7 @@
|
||||
;; If a preferences match was found, use its namespace.
|
||||
(if pref-match (cadr pref-match))
|
||||
;; There's no symbol. Default to a fund.
|
||||
(GNC-COMMODITY-NS-NONCURRENCY))))
|
||||
GNC_COMMODITY_NS_NONCURRENCY)))
|
||||
|
||||
;; Was a QIF type given?
|
||||
(if (string? qif-type)
|
||||
@ -753,7 +753,7 @@
|
||||
(if (or
|
||||
(string-ci=? qif-type "mutual fund")
|
||||
(string-ci=? qif-type "index"))
|
||||
(GNC-COMMODITY-NS-NONCURRENCY)
|
||||
GNC_COMMODITY_NS_NONCURRENCY
|
||||
(guess-by-symbol qif-symbol)))
|
||||
|
||||
;; No QIF type was given, so guess a
|
||||
|
@ -270,7 +270,7 @@
|
||||
(default-currency
|
||||
(gnc-commodity-table-find-full
|
||||
(gnc-commodity-table-get-table (gnc-get-current-book))
|
||||
(GNC-COMMODITY-NS-CURRENCY) default-currency-name))
|
||||
GNC_COMMODITY_NS_CURRENCY default-currency-name))
|
||||
(sorted-accounts-list '())
|
||||
(markable-xtns '())
|
||||
(sorted-qif-files-list (sort qif-files-list
|
||||
|
@ -435,7 +435,7 @@ the option '~a'."))
|
||||
(if (string? currency)
|
||||
(gnc-commodity-table-lookup
|
||||
(gnc-commodity-table-get-table (gnc-get-current-book))
|
||||
(GNC-COMMODITY-NS-CURRENCY) currency)
|
||||
GNC_COMMODITY_NS_CURRENCY currency)
|
||||
currency))
|
||||
|
||||
(let* ((value (currency->scm default-value))
|
||||
@ -561,7 +561,7 @@ the option '~a'."))
|
||||
(define (commodity->scm commodity)
|
||||
(if (string? commodity)
|
||||
(list 'commodity-scm
|
||||
(GNC-COMMODITY-NS-CURRENCY)
|
||||
GNC_COMMODITY_NS_CURRENCY
|
||||
commodity)
|
||||
(list 'commodity-scm
|
||||
(gnc-commodity-get-namespace commodity)
|
||||
@ -1560,7 +1560,7 @@ the option '~a'."))
|
||||
(if (string? currency-string)
|
||||
(gnc-commodity-table-lookup
|
||||
(gnc-commodity-table-get-table (gnc-get-current-book))
|
||||
(GNC-COMMODITY-NS-CURRENCY) currency-string)
|
||||
GNC_COMMODITY_NS_CURRENCY currency-string)
|
||||
#f))
|
||||
|
||||
(define (currency? val)
|
||||
|
Loading…
Reference in New Issue
Block a user