[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:
Christopher Lam 2019-07-28 19:56:45 +08:00
parent e8a41bbf54
commit e3a695d0d4

View File

@ -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))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;