Changeset 391 for python/trunk/Modules/expat/xmlrole.c
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Modules/expat/xmlrole.c
r2 r391 2 2 See the file COPYING for copying permission. 3 3 */ 4 5 #include <stddef.h> 4 6 5 7 #ifdef COMPILED_FROM_DSP … … 7 9 #elif defined(MACOS_CLASSIC) 8 10 #include "macconfig.h" 9 #elif defined(__amigaos 4__)11 #elif defined(__amigaos__) 10 12 #include "amigaconfig.h" 13 #elif defined(__WATCOMC__) 14 #include "watcomconfig.h" 11 15 #else 12 16 #ifdef HAVE_EXPAT_CONFIG_H … … 14 18 #endif 15 19 #endif /* ndef COMPILED_FROM_DSP */ 16 17 #include <stddef.h>18 20 19 21 #include "expat_external.h" … … 54 56 static const char KW_IDREFS[] = { 55 57 ASCII_I, ASCII_D, ASCII_R, ASCII_E, ASCII_F, ASCII_S, '\0' }; 58 #ifdef XML_DTD 56 59 static const char KW_IGNORE[] = { 57 60 ASCII_I, ASCII_G, ASCII_N, ASCII_O, ASCII_R, ASCII_E, '\0' }; 61 #endif 58 62 static const char KW_IMPLIED[] = { 59 63 ASCII_I, ASCII_M, ASCII_P, ASCII_L, ASCII_I, ASCII_E, ASCII_D, '\0' }; 64 #ifdef XML_DTD 60 65 static const char KW_INCLUDE[] = { 61 66 ASCII_I, ASCII_N, ASCII_C, ASCII_L, ASCII_U, ASCII_D, ASCII_E, '\0' }; 67 #endif 62 68 static const char KW_NDATA[] = { 63 69 ASCII_N, ASCII_D, ASCII_A, ASCII_T, ASCII_A, '\0' };
Note:
See TracChangeset
for help on using the changeset viewer.