Bug 796586 - QIF import incorrectly converts unicode characters from...

UTF8 encoded file

Force UTF-8 encoding; the line processing includes checking each
line for legal UTF-8 and transcoding it to the locale encoding.
This commit is contained in:
John Ralls
2018-06-16 10:37:58 -07:00
parent 1801fed486
commit c1103a3a52

View File

@@ -516,7 +516,7 @@
;; ...and this is if we read a null or eof line.
(if (and (not abort-read)
(not (eof-object? line)))
(line-loop))))))
(line-loop))))) #:encoding "UTF-8")
;; Reverse the transaction list so xtns are in the same order that
;; they appeared in the file. This is important in a few cases.