r22501 by jghali - #15288: Bad comparison in specialchars.cpp
scribus-commit
scribus-commit at lists.scribus.net
Mon Apr 30 10:37:36 UTC 2018
Author: jghali
Date: Mon Apr 30 10:37:36 2018
New Revision: 22501
URL: http://scribus.net/websvn/listing.php?repname=Scribus&sc=1&rev=22501
Log:
#15288: Bad comparison in specialchars.cpp
Modified:
trunk/Scribus/scribus/text/specialchars.cpp
Modified: trunk/Scribus/scribus/text/specialchars.cpp
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=22501&path=/trunk/Scribus/scribus/text/specialchars.cpp
==============================================================================
--- trunk/Scribus/scribus/text/specialchars.cpp (original)
+++ trunk/Scribus/scribus/text/specialchars.cpp Mon Apr 30 10:37:36 2018
@@ -229,7 +229,7 @@
(0xA722 <= ch && ch <= 0xA787) || // Letters in Latin Extended-D
(0xA78B <= ch && ch <= 0xA7AE) || // Letters in Latin Extended-D
(0xA7B0 <= ch && ch <= 0xA7B7) || // Letters in Latin Extended-D
- (0xA7F7 <= ch && ch <= 0xA7BF) || // Letters in Latin Extended-D
+ (0xA7F7 <= ch && ch <= 0xA7FF) || // Letters in Latin Extended-D
(0xAB30 <= ch && ch <= 0xAB5A) || // Letters in Latin Extended-D
(0xAB5C <= ch && ch <= 0xAB64) || // Letters in Latin Extended-D
(0xFB00 <= ch && ch <= 0xFB06) ; // Alphabetic Presentation Forms
More information about the scribus-commit
mailing list