dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/System.Xml XmlTextReader.cs,1.23,1.24


From: adam ballai <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/System.Xml XmlTextReader.cs,1.23,1.24
Date: Thu, 16 Jan 2003 12:53:38 -0500

Update of /cvsroot/dotgnu-pnet/pnetlib/System.Xml
In directory subversions:/tmp/cvs-serv2260/System.Xml

Modified Files:
        XmlTextReader.cs 
Log Message:


Index: XmlTextReader.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System.Xml/XmlTextReader.cs,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -r1.23 -r1.24
*** XmlTextReader.cs    15 Jan 2003 20:30:00 -0000      1.23
--- XmlTextReader.cs    16 Jan 2003 17:53:35 -0000      1.24
***************
*** 628,645 ****
                                                        nodeType = 
XmlNodeType.EndElement;
                                                        value = String.Empty;
                                                }
                                                else
                                                {
!                                                       // End element tag.
!                                                       name = 
ReadIdentifier(-1);
!                                                       SkipWhite();
!                                                       Expect('>');
!                                                       nodeType = 
XmlNodeType.EndElement;
!                                                       SetName(name);
!                                                       value = String.Empty;
!                                                       attributes = null;
!                                                       attributeIndex = -1;
!                                                       isEmpty = false;
!                                                       --depth;        
                                                }
                                                break;
--- 628,640 ----
                                                        nodeType = 
XmlNodeType.EndElement;
                                                        value = String.Empty;
+                                                       --depth;
                                                }
                                                else
                                                {
!                                                       // This will handle any 
'/' in Text
!                                                       // Nodes.
!                                                       builder.Append("/");
!                                                       ch = ReadChar();
!                                                       AnalyzeChar(ch, false);
                                                }
                                                break;





reply via email to

[Prev in Thread] Current Thread [Next in Thread]