mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Fix off-by-one bug that strips all spaces from imported strings.
BP git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14494 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
4762dbf429
commit
7e2f2b1468
@ -110,7 +110,7 @@ safe_utf8_collate (const char * da, const char * db)
|
||||
((Char) < 0x110000 && \
|
||||
(((Char) & 0xFFFFF800) != 0xD800) && \
|
||||
((Char) < 0xFDD0 || (Char) > 0xFDEF) && \
|
||||
((Char) > 0x20 || (Char) == 0x09 || (Char) == 0x0A || (Char) == 0x0D) && \
|
||||
((Char) >= 0x20 || (Char) == 0x09 || (Char) == 0x0A || (Char) == 0x0D) && \
|
||||
((Char) & 0xFFFE) != 0xFFFE)
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user