summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorkwaclaw <kwaclaw>2006-07-05 13:06:59 +0000
committerkwaclaw <kwaclaw>2006-07-05 13:06:59 +0000
commit8d9fb513ec43bd22710b70ece08ddac02344bafa (patch)
tree293143b851b908124511efdc01fb0210f9dda810 /doc
parent69ff0627d25870a4302e65c9ae93c4b4bd47ee91 (diff)
downloadlibexpat-8d9fb513ec43bd22710b70ece08ddac02344bafa.tar.gz
Fix for issues # 1515266 and # 1515600. The inner for loop under
XML_TOK_DATA_CHARS in doContent() and doCdataSection() did not check if the character data handler was set each time a call-back was made.
Diffstat (limited to 'doc')
-rw-r--r--doc/reference.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/reference.html b/doc/reference.html
index 68bf372..e2ced9a 100644
--- a/doc/reference.html
+++ b/doc/reference.html
@@ -1103,8 +1103,10 @@ lost, including
<ul>
<li> the end element handler for empty elements when stopped in the
start element handler,</li>
- <li> end namespace declaration handler when stopped in the end
+ <li> the end namespace declaration handler when stopped in the end
element handler,</li>
+ <li> the character data handler when stopped in the character data handler
+ while making multiple call-backs on a contiguous chunk of characters,</li>
</ul>
and possibly others.</p>