Add XML_ROLE_NOTATION_NO_SYSTEM_ID

This commit is contained in:
James Clark 1998-06-01 03:59:07 +00:00
parent 28bbc4f64f
commit 6ff56dc9dc
2 changed files with 2 additions and 1 deletions

View file

@ -594,7 +594,7 @@ int notation4(PROLOG_STATE *state,
return XML_ROLE_NOTATION_SYSTEM_ID;
case XML_TOK_DECL_CLOSE:
state->handler = internalSubset;
return XML_ROLE_NONE;
return XML_ROLE_NOTATION_NO_SYSTEM_ID;
}
return syntaxError(state);
}

View file

@ -44,6 +44,7 @@ enum {
XML_ROLE_ENTITY_NOTATION_NAME,
XML_ROLE_NOTATION_NAME,
XML_ROLE_NOTATION_SYSTEM_ID,
XML_ROLE_NOTATION_NO_SYSTEM_ID,
XML_ROLE_NOTATION_PUBLIC_ID,
XML_ROLE_ATTRIBUTE_NAME,
XML_ROLE_ATTRIBUTE_TYPE_CDATA,