mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
[qif-imp/string] fix argument order for string-delete
Guile formerly used the wrong argument order for string-delete and string-filter. Fix to correct order. See bug report http://savannah.gnu.org/bugs/?31681
This commit is contained in:
parent
e8a41bbf54
commit
e3a695d0d4
@ -98,7 +98,7 @@
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
||||
(define-public (gnc:string-delete-chars s chars)
|
||||
(string-delete s (lambda (c) (string-index chars c))))
|
||||
(string-delete (lambda (c) (string-index chars c)) s))
|
||||
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
Loading…
Reference in New Issue
Block a user