summaryrefslogtreecommitdiff
path: root/xmlunicode.c
Commit message (Collapse)AuthorAgeFilesLines
* Mark more static data as `const`David Kilzer2022-04-071-30/+30
| | | | | | | | | Similar to 8f5710379, mark more static data structures with `const` keyword. Also fix placement of `const` in encoding.c. Original patch by Sarah Wilkin.
* Remove elfgcchack.hNick Wellnhofer2022-02-201-2/+0
| | | | | The same optimization can be enabled with -fno-semantic-interposition since GCC 5. clang has always used this option by default.
* Add const in five places to move 1 KiB to .rdataBruce Dawson2017-08-281-3/+3
| | | | | xmlUnicodeBlocks is logically const but was not marked as such. This fixes that, thus moving it to the read-only data segment.
* Big space and tab cleanupDaniel Veillard2012-09-111-635/+635
| | | | Remove all space before tabs and space and tabs at end of lines.
* applied patches from Aivars Kalvans to make unicode tables const, fixesDaniel Veillard2006-03-271-361/+364
| | | | | | | | | * chvalid.c genChRanges.py genUnicode.py xmlunicode.c include/libxml/chvalid.h include/libxml/xmlunicode.h: applied patches from Aivars Kalvans to make unicode tables const, fixes bug #336096, this also updates to Unicode 4.01 final with a couple of character ranges fixes. Daniel
* more cleanups based on sparse reports, added "make sparse" DanielDaniel Veillard2005-07-291-2/+2
| | | | | | | * Makefile.am globals.c parserInternals.c xmlreader.c xmlunicode.c xmlwriter.c: more cleanups based on sparse reports, added "make sparse" Daniel
* revamped the elfgcchack.h format to cope with gcc4 change of aliasingDaniel Veillard2005-04-011-0/+2
| | | | | | | | | | | * doc/apibuild.py doc/elfgcchack.xsl: revamped the elfgcchack.h format to cope with gcc4 change of aliasing allowed scopes, had to add extra informations to doc/libxml2-api.xml to separate the header from the c module source. * *.c: updated all c library files to add a #define bottom_xxx and reimport elfgcchack.h thereafter, and a bit of cleanups. * doc//* testapi.c: regenerated when rebuilding the API Daniel
* more coverage one fix DanielDaniel Veillard2004-11-051-0/+2
| | | | | | * gentest.py testapi.c: more coverage * xmlunicode.c: one fix Daniel
* fixed missing '-' in block names, enhanced the hack for ABI aliasing.William M. Brack2003-11-101-187/+178
| | | | | | * genUnicode.py, xmlunicode.c, include/libxml/xmlunicode.h: fixed missing '-' in block names, enhanced the hack for ABI aliasing.
* enhanced for range checking, updated to Unicode version 4.0.1 (API docsWilliam M. Brack2003-11-091-2546/+1437
| | | | | | | * genUnicode.py, xmlunicode.c, include/libxml/xmlunicode.h, python/libxml2class.txt: enhanced for range checking, updated to Unicode version 4.0.1 (API docs also updated) * python/generator.py: minor change to fix a warning
* Exportability taint of the headersIgor Zlatkovic2003-08-251-1/+1
|
* merged the current state of XML Schemas implementation, it is notDaniel Veillard2002-04-161-0/+4290
* Makefile.am TODO_SCHEMAS configure.in genUnicode.py testAutomata.c testRegexp.c testSchemas.c xmlregexp.c xmlschemas.c xmlschemastypes.c xmlunicode.c include/libxml/Makefile.am include/libxml/schemasInternals.h include/libxml/xmlautomata.h include/libxml/xmlregexp.h include/libxml/xmlschemas.h include/libxml/xmlschemastypes.h include/libxml/xmlunicode.h include/libxml/xmlversion.h.in : merged the current state of XML Schemas implementation, it is not configured in by default, a specific --schemas configure option has been added. * test/automata test/regexp test/schemas Makefile.am result/automata result/regexp result/schemas: merged automata/regexp/schemas regression tests Daniel