tmiller 02/04/23 11:04:24
Modified: java/src/org/apache/xalan/xsltc/runtime Tag:
jaxp-ri-1_2_0-fcs-branch TextOutput.java
Log:
escaped character handling improved by Santiago, again
Revision Changes Path
No revision
No revision
1.49.4.3 +1 -3
xml-xalan/java/src/org/apache/xalan/xsltc/runtime/TextOutput.java
Index: TextOutput.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/runtime/TextOutput.java,v
retrieving revision 1.49.4.2
retrieving revision 1.49.4.3
diff -u -r1.49.4.2 -r1.49.4.3
--- TextOutput.java 23 Apr 2002 18:00:52 -0000 1.49.4.2
+++ TextOutput.java 23 Apr 2002 18:04:23 -0000 1.49.4.3
@@ -1,5 +1,5 @@
/*
- * @(#)$Id: TextOutput.java,v 1.49.4.2 2002/04/23 18:00:52 tmiller Exp $
+ * @(#)$Id: TextOutput.java,v 1.49.4.3 2002/04/23 18:04:23 tmiller Exp $
*
* The Apache Software License, Version 1.1
*
@@ -563,8 +563,6 @@
offset = i + 1;
break;
default:
- // Escape all characters not in the basic ASCII character set
- // to simple (hexadecimal) character references
if ( (current >= '\u007F' && current < '\u00A0') ||
(_is8859Encoded && (current > '\u00FF')) )
{
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]