mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-08-01 10:06:59 +03:00
- error.c: Jean Franois Lecomte provided a complete description
and a fix to bug #53537 Daniel
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Thu Apr 26 11:14:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
||||||
|
|
||||||
|
* error.c: Jean Fran<61>ois Lecomte provided a complete description
|
||||||
|
and a fix to bug #53537
|
||||||
|
|
||||||
Thu Apr 26 09:42:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
Thu Apr 26 09:42:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
||||||
|
|
||||||
* libxml.m4: added AM_PATH_XML2 provided by Toshio Kuratomi
|
* libxml.m4: added AM_PATH_XML2 provided by Toshio Kuratomi
|
||||||
|
5
error.c
5
error.c
@ -137,8 +137,13 @@ xmlParserPrintFileContext(xmlParserInputPtr input) {
|
|||||||
*ctnt++ = ' ';
|
*ctnt++ = ' ';
|
||||||
cur--;
|
cur--;
|
||||||
}
|
}
|
||||||
|
if (ctnt > content) {
|
||||||
*(--ctnt) = '^';
|
*(--ctnt) = '^';
|
||||||
*(++ctnt) = 0;
|
*(++ctnt) = 0;
|
||||||
|
} else {
|
||||||
|
*ctnt = '^';
|
||||||
|
*(++ctnt) = 0;
|
||||||
|
}
|
||||||
xmlGenericError(xmlGenericErrorContext,"%s\n", content);
|
xmlGenericError(xmlGenericErrorContext,"%s\n", content);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user