Another bugfix for entity lookups
This commit is contained in:
parent
2f2e07b2e2
commit
f7fe4bb787
|
@ -550,6 +550,7 @@ int csxml_feedChar(struct csxml* ctx, char ch)
|
||||||
ctx->state = StateCharEntity;
|
ctx->state = StateCharEntity;
|
||||||
ctx->entityChar = 0;
|
ctx->entityChar = 0;
|
||||||
} else if(c == ClassNameStartChar) {
|
} else if(c == ClassNameStartChar) {
|
||||||
|
CLEAR_BUFFER(buffer2);
|
||||||
APPEND_CH(buffer2, ch);
|
APPEND_CH(buffer2, ch);
|
||||||
ctx->state = StateEntityName;
|
ctx->state = StateEntityName;
|
||||||
} else ERROR("Invalid entity name.");
|
} else ERROR("Invalid entity name.");
|
||||||
|
|
|
@ -14,4 +14,4 @@ SOMAJOR=0
|
||||||
SOMINOR=0
|
SOMINOR=0
|
||||||
|
|
||||||
# SOMICRO is bumped every time there is a binary-compatible release.
|
# SOMICRO is bumped every time there is a binary-compatible release.
|
||||||
SOMICRO=4
|
SOMICRO=5
|
||||||
|
|
2
version
2
version
|
@ -12,7 +12,7 @@
|
||||||
# suffixed with a string.
|
# suffixed with a string.
|
||||||
VERMAJOR=1
|
VERMAJOR=1
|
||||||
VERMINOR=2
|
VERMINOR=2
|
||||||
VERMICRO=6
|
VERMICRO=7
|
||||||
VEREXTRA=""
|
VEREXTRA=""
|
||||||
|
|
||||||
# kate: replace-trailing-space-save true; space-indent true; tab-width 4;
|
# kate: replace-trailing-space-save true; space-indent true; tab-width 4;
|
||||||
|
|
Loading…
Reference in New Issue