Author: espreon
Date: Fri Oct 14 18:30:19 2011
New Revision: 51475

URL: http://svn.gna.org/viewcvs/wesnoth?rev=51475&view=rev
Log:
Don't break before the characters in the Katakana Phonetic Extensions plane.

Modified:
    trunk/src/marked-up_text.cpp

Modified: trunk/src/marked-up_text.cpp
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/src/marked-up_text.cpp?rev=51475&r1=51474&r2=51475&view=diff
==============================================================================
--- trunk/src/marked-up_text.cpp (original)
+++ trunk/src/marked-up_text.cpp Fri Oct 14 18:30:19 2011
@@ -394,6 +394,12 @@
                ch == 0xff01 || ch == 0xff09 || ch == 0xff0c || ch == 0xff0e || 
ch == 0xff1a ||
                ch == 0xff1b || ch == 0xff1f || ch == 0xff3d || ch == 0xff5d ||
 
+               // Small katakana used in Ainu:
+               ch == 0x31f0 || ch == 0x31f1 || ch == 0x31f2 || ch == 0x31f3 || 
ch == 0x31f4 ||
+               ch == 0x31f5 || ch == 0x31f6 || ch == 0x31f7 || ch == 0x31f8 || 
ch == 0x31f9 ||
+               ch == 0x31fa || ch == 0x31fb || ch == 0x31fc || ch == 0x31fd || 
ch == 0x31fe ||
+               ch == 0x31ff ||
+
                /**
                 * FIXME don't break before these Korean characters
                 */


_______________________________________________
Wesnoth-commits mailing list
[email protected]
https://mail.gna.org/listinfo/wesnoth-commits

Reply via email to