1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-08-08 17:42:14 +03:00

Fixed = vs. == bug in parser.c (hrmless though) and type in sgml, Daniel.

This commit is contained in:
Daniel Veillard
1999-12-21 16:25:49 +00:00
parent 5cb5ab8d94
commit 0caf07a701
3 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
Tue Dec 21 17:22:17 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
* parser.c: fixed a stupid = vs. == bug :-(
* doc/gnome-xml.sgml: s/glade/xml/
Tue Dec 21 14:29:34 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> Tue Dec 21 14:29:34 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
* configure.in, doc/xml.html : bug fix release 1.8.2 * configure.in, doc/xml.html : bug fix release 1.8.2

View File

@@ -52,7 +52,7 @@
</legalnotice> </legalnotice>
<abstract> <abstract>
<para>This manual documents the interfaces of the libglade <para>This manual documents the interfaces of the libxml
library and has some short notes to help get you up to speed library and has some short notes to help get you up to speed
with using the library.</para> with using the library.</para>
</abstract> </abstract>

View File

@@ -855,7 +855,7 @@ xmlParseStringCharRef(xmlParserCtxtPtr ctxt, const xmlChar **str) {
if ((str == NULL) || (*str == NULL)) return(0); if ((str == NULL) || (*str == NULL)) return(0);
ptr = *str; ptr = *str;
cur = *ptr; cur = *ptr;
if ((cur = '&') && (ptr[1] == '#') && (ptr[2] == 'x')) { if ((cur == '&') && (ptr[1] == '#') && (ptr[2] == 'x')) {
ptr += 3; ptr += 3;
cur = *ptr; cur = *ptr;
while (cur != ';') { while (cur != ';') {