home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / linuxdoc-sgml-1.1 / sgmls-1.1 / msg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-03  |  18.6 KB  |  253 lines

  1. /*
  2. Severity codes:
  3. I information (not an SGML error at all)
  4. W warning (an SGML markup error but it knows what you mean)
  5. E error
  6. C critical (fatal)
  7.  
  8. Type codes:
  9. R resource
  10. C ?context/content
  11. M minimization
  12. Q quantity
  13. S syntax
  14. D declaration
  15. U unsupported feature
  16. */
  17. struct {
  18.      char *text;
  19.      char severity;
  20.      char type;
  21. } messages[] = {
  22. /*   0 */ {0},
  23. /*   1 */ {"%s element not allowed at this point in %s element", 'E', 'C'},
  24. /*   2 */ {"%s markup declaration not permitted here; declaration ended", 'E', 'D'},
  25. /*   3 */ {"Length of name, number, or token exceeded NAMELEN or LITLEN limit", 'E', 'Q'},
  26. /*   4 */ {"Non-SGML character ignored", 'E', 'S'},
  27. /*   5 */ {"%s end-tag ignored: doesn't end any open element (current is %s)", 'E', 'C'},
  28. /*   6 */ {"%s start-tag exceeds open element limit; possible lies from %s on", 'E', 'Q'},
  29. /*   7 */ {"Start-tag omitted from %s with empty content", 'E', 'M'},
  30. /*   8 */ {"Illegal entity end in markup or delimited text", 'E', 'S'},
  31. /*   9 */ {"Incorrect character in markup; markup terminated", 'E', 'S'},
  32. /*  10 */ {"Data not allowed at this point in %s element", 'E', 'C'},
  33. /*  11 */ {"No element declaration for %s end-tag GI; end-tag ignored", 'E', 'C'},
  34. /*  12 */ {"%s name ignored: not a syntactically valid SGML name", 'E', 'S'},
  35. /*  13 */ {"%s = \"%s\" attribute ignored: not defined for this element", 'E', 'C'},
  36. /*  14 */ {"%s = \"%s\" attribute value defaulted: invalid character", 'E', 'S'},
  37. /*  15 */ {"%s = \"%s\" attribute value defaulted: token too long", 'E', 'Q'},
  38. /*  16 */ {"%s = \"%s\" attribute value defaulted: too many tokens", 'E', 'C'},
  39. /*  17 */ {"%s = \"%s\" attribute value defaulted: wrong token type", 'E', 'C'},
  40. /*  18 */ {"%s = \"%s\" attribute value defaulted: token not in group", 'E', 'C'},
  41. /*  19 */ {"Required %s attribute was not specified; may affect processing", 'E', 'C'},
  42. /*  20 */ {"%s end-tag implied by %s end-tag; not minimizable", 'E', 'M'},
  43. /*  21 */ {"%s start-tag implied by %s start-tag; not minimizable", 'W', 'M'},
  44. /*  22 */ {"Possible attributes treated as data because none were defined", 'E', 'C'},
  45. /*  23 */ {"Duplicate specification occurred for \"%s\"; may affect processing", 'E', 'D'},
  46. /*  24 */ {"\"%s\" keyword invalid; declaration terminated", 'E', 'D'},
  47. /*  25 */ {"%s = \"%s\" attribute defaulted: empty string not allowed for token", 'E', 'C'},
  48. /*  26 */ {"Marked section end ignored; not in a marked section", 'E', 'S'},
  49. /*  27 */ {"Marked section start ignored; %s marked sections open already", 'E', 'Q'},
  50. /*  28 */ {"One or more parameters missing; declaration ignored", 'E', 'D'},
  51. /*  29 */ {"\"PUBLIC\" or \"SYSTEM\" required; declaration terminated", 'E', 'D'},
  52. /*  30 */ {"%s element ended prematurely; required %s omitted", 'E', 'C'},
  53. /*  31 */ {"Entity \"%s\" terminated: could not read file", 'E', 'R'},
  54. /*  32 */ {"Could not open file for entity \"%s\"; entity reference ignored", 'E', 'R'},
  55. /*  33 */ {"Insufficient main memory; unable to continue parsing", 'C', 'R'},
  56. /*  34 */ {"%s entity reference ignored; exceeded open entity limit (%s)", 'E', 'Q'},
  57. /*  35 */ {"No declaration for entity \"%s\"; reference ignored", 'E', 'C'},
  58. /*  36 */ {"%s entity reference occurred within own text; reference ignored", 'E', 'C'},
  59. /*  37 */ {"Entity nesting level out of sync", 'E', 'S'},
  60. /*  38 */ {"Parameter entity text cannot have %s keyword; keyword ignored", 'E', 'D'},
  61. /*  39 */ {"%s end-tag implied by %s start-tag; not minimizable", 'W', 'M'},
  62. /*  40 */ {"Start-tag minimization ignored; element has required attribute", 'E', 'D'},
  63. /*  41 */ {"Required %s element cannot be excluded from %s element", 'E', 'C'},
  64. /*  42 */ {"No DOCTYPE declaration; document type is unknown", 'E', 'C'},
  65. /*  43 */ {"Undefined %1$s start-tag GI was used in DTD; \"%1$s O O ANY\" assumed", 'E', 'C'},
  66. /*  44 */ {"Invalid character(s) ignored; attempting to resume DOCTYPE subset", 'E', 'S'},
  67. /*  45 */ {"No declaration for entity \"%s\"; default definition used", 'I', 'C'},
  68. /*  46 */ {"%s end-tag implied by NET delimiter; not minimizable", 'W', 'M'},
  69. /*  47 */ {"%s end-tag implied by data; not minimizable", 'W', 'M'},
  70. /*  48 */ {"%s end-tag implied by short start-tag (no GI); not minimizable", 'W', 'M'},
  71. /*  49 */ {"%s start-tag implied by data; not minimizable", 'W', 'M'},
  72. /*  50 */ {"%s start-tag implied by short start-tag (no GI); not minimizable", 'W', 'M'},
  73. /*  51 */ {"Short end-tag (no GI) ignored: no open elements", 'E', 'C'},
  74. /*  52 */ {"No definition for %1$s document type; \"%1$s O O ANY\" assumed", 'E', 'C'},
  75. /*  53 */ {"No definition for %1$s implied start-tag; \"%1$s O O ANY\" assumed", 'E', 'C'},
  76. /*  54 */ {"%s element ended prematurely; required subelement omitted", 'E', 'C'},
  77. /*  55 */ {"Content model token %s: connectors conflict; first was used", 'E', 'D'},
  78. /*  56 */ {"Duplicate specification occurred for \"%s\"; duplicate ignored", 'E', 'D'},
  79. /*  57 */ {"Bad end-tag in R/CDATA element; treated as short (no GI) end-tag", 'E', 'S'},
  80. /*  58 */ {"Start-tag minimization should be \"-\" for element with declared content", 'I', 'D'},
  81. /*  59 */ {"Reference to PI entity not permitted here; reference ignored", 'E', 'S'},
  82. /*  60 */ {"Non-SGML character found; should have been character reference", 'W', 'S'},
  83. /*  61 */ {"Numeric character reference exceeds 255; reference ignored", 'E', 'S'},
  84. /*  62 */ {"Invalid alphabetic character reference ignored", 'E', 'S'},
  85. /*  63 */ {"Invalid character in minimum literal; character ignored", 'E', 'S'},
  86. /*  64 */ {"Keyword %s ignored; \"%s\" is not a valid marked section keyword", 'E', 'D'},
  87. /*  65 */ {"Parameter entity name longer than (NAMELEN-1); truncated", 'E', 'Q'},
  88. /*  66 */ {"Start-tag length exceeds TAGLEN limit; parsed correctly", 'W', 'Q'},
  89. /*  67 */ {"%s attribute defaulted: FIXED attribute must equal default", 'W', 'C'},
  90. /*  68 */ {"Duplicate specification occurred for \"%s\"; duplicate ignored", 'I', 'D'},
  91. /*  69 */ {"%s = \"%s\" IDREF attribute ignored: referenced ID does not exist", 'E', 'C'},
  92. /*  70 */ {"%s = \"%s\" IDREF attribute ignored: number of IDs in list exceeds GRPCNT limit", 'E', 'Q'},
  93. /*  71 */ {"%s = \"%s\" ID attribute ignored: ID in use for another element", 'E', 'C'},
  94. /*  72 */ {"%s = \"%s\" ENTITY attribute not general entity; may affect processing", 'E', 'C'},
  95. /*  73 */ {"%s = \"%s\" attribute ignored: previously specified in same list", 'W', 'C'},
  96. /*  74 */ {"\"?\" = \"%s\" name token ignored: not in any group in this list", 'E', 'C'},
  97. /*  75 */ {"Normalized attribute specification length over ATTSPLEN limit", 'E', 'Q'},
  98. /*  76 */ {"%s = \"%s\" NOTATION ignored: element content is empty", 'E', 'C'},
  99. /*  77 */ {"%s = \"%s\" NOTATION undefined: may affect processing", 'E', 'C'},
  100. /*  78 */ {"Entity \"%2$s\" has undefined notation \"%1$s\"", 'E', 'C'},
  101. /*  79 */ {"%s = \"%s\" default attribute value not in group; #IMPLIED used", 'E', 'C'},
  102. /*  80 */ {"#CURRENT default value treated as #IMPLIED for %s ID attribute", 'E', 'D'},
  103. /*  81 */ {"ID attribute %s cannot have a default value; treated as #IMPLIED", 'E', 'D'},
  104. /*  82 */ {"%s attribute must be token, not empty string; treated as #IMPLIED", 'E', 'D'},
  105. /*  83 */ {"NOTATION attribute ignored for EMPTY element", 'E', 'D'},
  106. /*  84 */ {"%s = \"%s\" NOTATION ignored: content reference specified", 'E', 'C'},
  107. /*  85 */ {"#CONREF default value treated as #IMPLIED for EMPTY element", 'W', 'D'},
  108. /*  86 */ {"%s = \"%s\" entity not data entity; may affect processing", 'E', 'C'},
  109. /*  87 */ {"End-tag minimization should be \"O\" for EMPTY element", 'I', 'D'},
  110. /*  88 */ {"Formal public identifier \"%s\" invalid; treated as informal", 'E', 'S'},
  111. /*  89 */ {"Out-of-context %2$s start-tag ended %1$s document element (and parse)", 'E', 'C'},
  112. /*  90 */ {"\"%s\" keyword is for unsupported feature; declaration terminated", 'E', 'D'},
  113. /*  91 */ {"Attribute specification list in prolog cannot be empty", 'E', 'D'},
  114. /*  92 */ {"Document ended invalidly within a literal; parsing ended", 'C', 'S'},
  115. /*  93 */ {"Short ref in map \"%2$s\" to undeclared entity \"%1$s\" treated as data", 'E', 'C'},
  116. /*  94 */ {"Could not reopen file to continue entity \"%s\"; entity terminated", 'E', 'R'},
  117. /*  95 */ {"Out-of-context data ended %s document element (and parse)", 'E', 'C'},
  118. /*  96 */ {"Short start-tag (no GI) ended %s document element (and parse)", 'E', 'C'},
  119. /*  97 */ {"DSO delimiter (%s) omitted from marked section declaration", 'E', 'D'},
  120. /*  98 */ {"Group token %s: duplicate name or name token \"%s\" ignored", 'E', 'D'},
  121. /*  99 */ {"Attempt to redefine %s attribute ignored", 'E', 'D'},
  122. /* 100 */ {"%s definition ignored: %s is not a valid declared value keyword", 'E', 'D'},
  123. /* 101 */ {"%s definition ignored: NOTATION attribute already defined", 'E', 'D'},
  124. /* 102 */ {"%s definition ignored: ID attribute already defined", 'E', 'D'},
  125. /* 103 */ {"%s definition ignored: no declared value specified", 'E', 'D'},
  126. /* 104 */ {"%s definition ignored: invalid declared value specified", 'E', 'D'},
  127. /* 105 */ {"%s definition ignored: number of names or name tokens in group exceeded GRPCNT limit", 'E', 'D'},
  128. /* 106 */ {"%s definition ignored: name group omitted for NOTATION attribute", 'E', 'D'},
  129. /* 107 */ {"#CONREF default value treated as #IMPLIED for %s ID attribute", 'E', 'D'},
  130. /* 108 */ {"%s definition ignored: %s is not a valid default value keyword", 'E', 'D'},
  131. /* 109 */ {"%s definition ignored: no default value specified", 'E', 'D'},
  132. /* 110 */ {"%s definition ignored: invalid default value specified", 'E', 'D'},
  133. /* 111 */ {"More than ATTCNT attribute names and/or name (token) values; terminated", 'E', 'D'},
  134. /* 112 */ {"Attempted redefinition of attribute definition list ignored", 'E', 'D'},
  135. /* 113 */ {"Content model token %s: more than GRPCNT model group tokens; terminated", 'E', 'Q'},
  136. /* 114 */ {"Content model token %s: more than GRPGTCNT content model tokens; terminated", 'E', 'Q'},
  137. /* 115 */ {"Content model token %s: more than GRPLVL nested model groups; terminated", 'E', 'Q'},
  138. /* 116 */ {"Content model token %s: %s invalid; declaration terminated", 'E', 'D'},
  139. /* 117 */ {"\"PUBLIC\" specified without public ID; declaration terminated", 'E', 'D'},
  140. /* 118 */ {"\"%s\" keyword invalid (only %s permitted); declaration terminated", 'E', 'D'},
  141. /* 119 */ {"\"%s\" specified without notation name; declaration terminated", 'E', 'D'},
  142. /* 120 */ {"Parameter must be a name; declaration terminated", 'E', 'D'},
  143. /* 121 */ {"Parameter must be a GI or a group of them; declaration terminated", 'E', 'D'},
  144. /* 122 */ {"Parameter must be a name or PERO (%%); declaration terminated", 'E', 'D'},
  145. /* 123 */ {"Parameter must be a literal; declaration terminated", 'E', 'D'},
  146. /* 124 */ {"\"%s\" not valid short reference delimiter; declaration terminated", 'E', 'D'},
  147. /* 125 */ {"Map does not exist; declaration ignored", 'E', 'C'},
  148. /* 126 */ {"MDC delimiter (>) expected; following text may be misinterpreted", 'E', 'D'},
  149. /* 127 */ {"Document ended invalidly within prolog; parsing ended", 'C', 'S'},
  150. /* 128 */ {"\"PUBLIC\" or \"SYSTEM\" or DSO ([) required; declaration terminated", 'E', 'D'},
  151. /* 129 */ {"Minimization must be \"-\" or \"O\" (not \"%s\"); declaration terminated", 'E', 'D'},
  152. /* 130 */ {"Content model or keyword expected; declaration terminated", 'E', 'D'},
  153. /* 131 */ {"Rank stem \"%s\" + suffix \"%s\" more than NAMELEN characters; not defined", 'E', 'D'},
  154. /* 132 */ {"Undefined %s start-tag GI ignored; not used in DTD", 'E', 'C'},
  155. /* 133 */ {"Document ended invalidly within a markup declaration; parsing ended", 'C', 'S'},
  156. /* 134 */ {"Normalized length of literal exceeded %s; markup terminated", 'E', 'Q'},
  157. /* 135 */ {"R/CDATA marked section in declaration subset; prolog terminated", 'E', 'D'},
  158. /* 136 */ {"%s = \"%s\" ENTITIES attribute ignored: more than GRPCNT in list", 'E', 'Q'},
  159. /* 137 */ {"Content model is ambiguous", 'W', 'D'},
  160. /* 138 */ {"Invalid parameter entity name \"%s\"", 'E', 'S'},
  161. /* 139 */ {"Document ended invalidly within a marked section; parsing ended", 'C', 'S'},
  162. /* 140 */ {"Element \"%s\" used in DTD but not defined", 'I', 'D'},
  163. /* 141 */ {"Invalid NDATA or SUBDOC entity reference occurred; ignored", 'E', 'S'},
  164. /* 142 */ {"Associated element type not allowed in document instance", 'E', 'C'},
  165. /* 143 */ {"Illegal DSC character; in different entity from DSO", 'E', 'C'},
  166. /* 144 */ {"Declared value of data attribute cannot be ID", 'E', 'D' },
  167. /* 145 */ {"Invalid reference to external CDATA or SDATA entity; ignored", 'E', 'S'},
  168. /* 146 */ {"Could not find external document type \"%s\"", 'E', 'R'},
  169. /* 147 */ {"Could not find external general entity \"%s\"", 'I', 'R'},
  170. /* 148 */ {"Could not find external parameter entity \"%s\"", 'I', 'R'},
  171. /* 149 */ {"Reference to non-existent general entity \"%s\" ignored", 'E', 'R'},
  172. /* 150 */ {"Could not find entity \"%s\" using default declaration", 'E', 'R'},
  173. /* 151 */ {"Could not find entity \"%2$s\" in attribute %1$s using default declaration", 'E', 'R'},
  174. /* 152 */ {"Short reference map \"%s\" used in DTD but not defined", 'I', 'D'},
  175. /* 153 */ {"End-tag minimization should be \"O\" for element with CONREF attribute", 'I', 'D'},
  176. /* 154 */ {"Declared value of data attribute cannot be ENTITY or ENTITIES", 'E', 'D' },
  177. /* 155 */ {"Declared value of data attribute cannot be IDREF or IDREFS", 'E', 'D' },
  178. /* 156 */ {"Declared value of data attribute cannot be NOTATION", 'E', 'D' },
  179. /* 157 */ {"CURRENT cannot be specified for a data attribute", 'E', 'D' },
  180. /* 158 */ {"CONREF cannot be specified for a data attribute", 'E', 'D' },
  181. /* 159 */ {"Short reference map for element \"%s\" not defined; ignored", 'E', 'C'},
  182. /* 160 */ {"Cannot create temporary file", 'C', 'R'},
  183. /* 161 */ {"Document ended invalidly within SGML declaration", 'C', 'D'},
  184. /* 162 */ {"Capacity limit %s exceeded by %s points", 'W', 'Q'},
  185. /* 163 */ {"Amendment 1 requires \"ISO 8879:1986\" instead of \"ISO 8879-1986\"", 'W', 'D'},
  186. /* 164 */ {"Non-markup, non-minimum data character in SGML declaration", 'E', 'D'},
  187. /* 165 */ {"Parameter cannot be a literal", 'E', 'D'},
  188. /* 166 */ {"Invalid concrete syntax scope \"%s\"", 'E', 'D'},
  189. /* 167 */ {"Parameter must be a number", 'E', 'D'},
  190. /* 168 */ {"\"%s\" should have been \"%s\"", 'E', 'D'},
  191. /* 169 */ {"Character number %s is not supported as an additional name character", 'E', 'U'},
  192. /* 170 */ {"Parameter must be a literal or \"%s\"", 'E', 'D'},
  193. /* 171 */ {"Bad character description for character %s", 'E', 'D'},
  194. /* 172 */ {"Character number %s is described more than once", 'W', 'D'},
  195. /* 173 */ {"Character number plus number of characters exceeds 256", 'E', 'D'},
  196. /* 174 */ {"No description for upper half of character set: assuming \"128 128 UNUSED\"", 'W', 'D'},
  197. /* 175 */ {"Character number %s was not described; assuming UNUSED", 'E', 'D'},
  198. /* 176 */ {"Non-significant shunned character number %s not declared UNUSED", 'E', 'D'},
  199. /* 177 */ {"Significant character \"%s\" cannot be non-SGML", 'E', 'D'},
  200. /* 178 */ {"Unknown capacity set \"%s\"", 'E', 'U'},
  201. /* 179 */ {"No capacities specified." , 'E', 'D'},
  202. /* 180 */ {"Unknown concrete syntax \"%s\"", 'E', 'U'},
  203. /* 181 */ {"Character number exceeds 255", 'E', 'D'},
  204. /* 182 */ {"Concrete syntax SWITCHES not supported", 'E', 'U'},
  205. /* 183 */ {"\"INSTANCE\" scope not supported", 'E', 'U'},
  206. /* 184 */ {"Value of \"%s\" feature must be one or more", 'E', 'D'},
  207. /* 185 */ {"\"%s\" invalid; must be \"YES\" or \"NO\"", 'E', 'D'},
  208. /* 186 */ {"\"%s\" invalid; must be \"PUBLIC\" or \"SGMLREF\"", 'E', 'D'},
  209. /* 187 */ {"Feature \"%s\" is not supported", 'E', 'U'},
  210. /* 188 */ {"Too many open subdocument entities", 'E', 'Q'},
  211. /* 189 */ {"Invalid formal public identifier", 'I', 'D'},
  212. /* 190 */ {"Public text class should have been \"%s\"", 'I', 'D'},
  213. /* 191 */ {"Character number %s must be non-SGML", 'W', 'D'},
  214. /* 192 */ {"Notation \"%s\" not defined in DTD", 'W', 'D'},
  215. /* 193 */ {"Unclosed start or end tag requires \"SHORTTAG YES\"", 'W', 'M'},
  216. /* 194 */ {"Net-enabling start tag requires \"SHORTTAG YES\"", 'W', 'M'},
  217. /* 195 */ {"Attribute name omission requires \"SHORTTAG YES\"", 'W', 'M'},
  218. /* 196 */ {"Undelimited attribute value requires \"SHORTTAG YES\"", 'W', 'M'},
  219. /* 197 */ {"Attribute specification omitted for \"%s\": requires markup minimization", 'W', 'M'},
  220. /* 198 */ {"Concrete syntax does not have any short reference delimiters", 'E', 'D'},
  221. /* 199 */ {"Character number %s does not exist in the base character set", 'E', 'D'},
  222. /* 200 */ {"Character number %s is UNUSED in the syntax reference character set", 'E', 'D'},
  223. /* 201 */ {"Character number %s was not described in the syntax reference character set", 'E', 'D'},
  224. /* 202 */ {"Character number %s in the syntax reference character set has no corresponding character in the system character set", 'E', 'D'},
  225. /* 203 */ {"Character number %s was described using an unknown base set", 'E', 'D'},
  226. /* 204 */ {"Duplication specification for added funtion \"%s\"", 'E', 'D'},
  227. /* 205 */ {"Added function character cannot be \"%s\"", 'E', 'D'},
  228. /* 206 */ {"Only reference concrete syntax function characters supported", 'E', 'U'},
  229. /* 207 */ {"Only reference concrete syntax general delimiters supported", 'E', 'U'},
  230. /* 208 */ {"Only reference concrete syntax short reference delimiters supported", 'E', 'U'},
  231. /* 209 */ {"Unrecognized keyword \"%s\"", 'E', 'D'},
  232. /* 210 */ {"Unrecognized quantity name \"%s\"", 'E', 'D'},
  233. /* 211 */ {"Interpretation of \"%s\" is not a valid name in the declared concrete syntax", 'E', 'D'},
  234. /* 212 */ {"Replacement reserved name \"%s\" cannot be reference reserved name", 'E', 'D'},
  235. /* 213 */ {"Duplicate replacement reserved name \"%s\"", 'E', 'D'},
  236. /* 214 */ {"Quantity \"%s\" must not be less than %s", 'E', 'D'},
  237. /* 215 */ {"Only values up to %2$s are supported for quantity \"%1$s\"", 'E', 'U'},
  238. /* 216 */ {"Exclusions attempt to change required status of group in \"%s\"", 'E', 'C'},
  239. /* 217 */ {"Exclusion cannot apply to token \"%s\" in content model for \"%s\"", 'E', 'C'},
  240. /* 218 */ {"Required %s attribute was not specified for entity %s", 'E', 'C'},
  241. /* 219 */ {"UCNMSTRT must have the same number of characters as LCNMSTRT", 'E', 'D'},
  242. /* 220 */ {"UCNMCHAR must have the same number of characters as LCNMCHAR", 'E', 'D'},
  243. /* 221 */ {"Character number %s assigned to both LCNMSTRT or UCNMSTRT and LCNMCHAR or UCNMCHAR", 'E', 'D'},
  244. /* 222 */ {"Character number %s cannot be an additional name character", 'E', 'D'},
  245. /* 223 */ {"It is unsupported for \"-\" not to be assigned to UCNMCHAR or LCNMCHAR", 'E', 'U'},
  246. /* 224 */ {"Normalized length of value of attribute \"%s\" exceeded LITLEN", 'E', 'Q'},
  247. /* 225 */ {"Length of interpreted parameter literal exceeds LITLEN less the length of the bracketing delimiters", 'E', 'Q'},
  248. /* 226 */ {"Start tag of document element omitted; not minimizable", 'W', 'M'},
  249. /* 227 */ {"Unrecognized designating escape sequence \"%s\"", 'I', 'U'},
  250. /* 228 */ {"Earlier reference to entity \"%s\" used default entity", 'I', 'D'},
  251. /* 229 */ {"Reference to non-existent parameter entity \"%s\" ignored", 'E', 'R'},
  252. };
  253.