You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by je...@apache.org on 2007/11/03 11:52:30 UTC

svn commit: r591584 - /xmlgraphics/fop/trunk/src/java/org/apache/fop/util/CharUtilities.java

Author: jeremias
Date: Sat Nov  3 03:52:29 2007
New Revision: 591584

URL: http://svn.apache.org/viewvc?rev=591584&view=rev
Log:
Zero Word Joiner was missing in the constants.

Modified:
    xmlgraphics/fop/trunk/src/java/org/apache/fop/util/CharUtilities.java

Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/util/CharUtilities.java
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/util/CharUtilities.java?rev=591584&r1=591583&r2=591584&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/util/CharUtilities.java (original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/util/CharUtilities.java Sat Nov  3 03:52:29 2007
@@ -62,6 +62,8 @@
     public static final char ZERO_WIDTH_SPACE = '\u200B';
     /** word joiner */
     public static final char WORD_JOINER = '\u2060';
+    /** zero-width joiner */
+    public static final char ZERO_WIDTH_JOINER = '\u200D';
     /** zero-width no-break space (= byte order mark) */
     public static final char ZERO_WIDTH_NOBREAK_SPACE = '\uFEFF';
     /** soft hyphen */



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: fop-commits-help@xmlgraphics.apache.org