[Expat-checkins] CVS: expat/doc reference.html,1.10,1.11

Fred L. Drake fdrake@users.sourceforge.net
Mon, 13 Aug 2001 12:10:12 -0700


Update of /cvsroot/expat/expat/doc
In directory usw-pr-cvs1:/tmp/cvs-serv25796

Modified Files:
	reference.html 
Log Message:

Added a note to the XML_GetCurrentByteCount() function that it returns 0
for the end tag event when an empty-element tag is used.  Noted on
expat-discuss by Michael Isard.


Index: reference.html
===================================================================
RCS file: /cvsroot/expat/expat/doc/reference.html,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** reference.html	2001/01/24 19:53:01	1.10
--- reference.html	2001/08/13 19:10:09	1.11
***************
*** 1327,1332 ****
  </pre></a></div>
  <div class="fcndef">
! Return the number of bytes in the current event. Returns 0 if the event is
! inside a reference to an internal entity.
  </div>
  
--- 1327,1335 ----
  </pre></a></div>
  <div class="fcndef">
! Return the number of bytes in the current event. Returns
! <code>0</code> if the event is inside a reference to an internal
! entity and for the end-tag event for empty element tags (the later can
! be used to distinguish empty-element tags from empty elements using
! separate start and end tags).
  </div>