summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2013-11-12 13:08:44 +0100
committerYorhel <git@yorhel.nl>2013-11-12 13:08:44 +0100
commit0c45e3772deee153b8dfb412675de6edbfa1252f (patch)
tree9f6efe9692e7a523781a5a4438f8282f0e54ef41
parentd3b12867ffb8885441496335ed69911684739f16 (diff)
Remove unused YXML_EATTR enum value
-rw-r--r--yxml.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/yxml.h b/yxml.h
index f1ebaeb..bf55353 100644
--- a/yxml.h
+++ b/yxml.h
@@ -25,11 +25,10 @@
typedef enum {
- YXML_EEOF = -6, /* Unexpected EOF */
- YXML_EREF = -5, /* Invalid character or entity reference (&whatever;) */
- YXML_ECLOSE = -4, /* Close tag does not match open tag (<Tag> .. </OtherTag>) */
- YXML_ESTACK = -3, /* Stack overflow (too deeply nested tags or too long element/attribute name) */
- YXML_EATTR = -2, /* Too long attribute name */
+ YXML_EEOF = -5, /* Unexpected EOF */
+ YXML_EREF = -4, /* Invalid character or entity reference (&whatever;) */
+ YXML_ECLOSE = -3, /* Close tag does not match open tag (<Tag> .. </OtherTag>) */
+ YXML_ESTACK = -2, /* Stack overflow (too deeply nested tags or too long element/attribute name) */
YXML_ESYN = -1, /* Syntax error (unexpected byte) */
YXML_OK = 0, /* Character consumed, no new token present */
YXML_ELEMSTART = 1, /* Start of an element: '<Tag ..' */