diff options
| author | Daniel Veillard <veillard@src.gnome.org> | 2001-09-14 10:29:27 +0000 |
|---|---|---|
| committer | Daniel Veillard <veillard@src.gnome.org> | 2001-09-14 10:29:27 +0000 |
| commit | 166982816ee63ec70e8bdcabcdf337b1fe9e1e80 (patch) | |
| tree | ba99d23b3a5a3067d9711f1d156c2c9138829848 /encoding.c | |
| parent | 008186fc7fe681c4fa0abd831bc4cb244f46ab01 (diff) | |
| download | android_external_libxml2-166982816ee63ec70e8bdcabcdf337b1fe9e1e80.tar.gz android_external_libxml2-166982816ee63ec70e8bdcabcdf337b1fe9e1e80.tar.bz2 android_external_libxml2-166982816ee63ec70e8bdcabcdf337b1fe9e1e80.zip | |
do not output hexadecimal charrefs when serializing HTML since some
* encoding.c entities.c: do not output hexadecimal charrefs
when serializing HTML since some version of Netscape can't
grok it, generate decimal ones.
* result/HTML/doc3.htm: output changed due to previous test
* parserInternals.c: repair xmlKeepBlanksDefault() broken in 2.4.4
Daniel
Diffstat (limited to 'encoding.c')
| -rw-r--r-- | encoding.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2264,7 +2264,7 @@ retry: * and continue the transcoding phase, hoping the error * did not mangle the encoder state. */ - sprintf((char *) charref, "&#x%X;", cur); + sprintf((char *) charref, "&#%d;", cur); xmlBufferShrink(in, len); xmlBufferAddHead(in, charref, -1); |
