DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=31887>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=31887 [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | ------- Additional Comments From [EMAIL PROTECTED] 2006-07-14 16:36 ------- The patch fixed most problems, but it forgets the flushing of trailing characters. The result is that the unparsed '{...' characters appear as garbage in the output. To fix that you need to change the following block in the characters method: > // '{' without a closing '}' > // save char's from '{' in previous_ch in case the following call to characters() > // provides the '}' > previous_ch = new char[end - i]; > System.arraycopy(ch, i, previous_ch, 0, end - i); > break; must either not "break" but "return", or this should be added before the break: > start = end; -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
