mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user