mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 10:09:20 +02:00
* Extended the "Unmatching element end tag" exception, now the expected
tag name is included in the message string.
This commit is contained in:
parent
b1fb6d6d4f
commit
2e70d11bcf
@ -814,7 +814,7 @@ begin
|
|||||||
// Get ETag [42]
|
// Get ETag [42]
|
||||||
ExpectString('</');
|
ExpectString('</');
|
||||||
if ExpectName <> name then
|
if ExpectName <> name then
|
||||||
RaiseExc('Unmatching element end tag');
|
RaiseExc('Unmatching element end tag (expected "</' + name + '>"');
|
||||||
SkipWhitespace;
|
SkipWhitespace;
|
||||||
ExpectString('>');
|
ExpectString('>');
|
||||||
end;
|
end;
|
||||||
@ -1117,7 +1117,11 @@ end.
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.3 2000-07-29 14:52:25 sg
|
Revision 1.4 2000-10-14 09:40:44 sg
|
||||||
|
* Extended the "Unmatching element end tag" exception, now the expected
|
||||||
|
tag name is included in the message string.
|
||||||
|
|
||||||
|
Revision 1.3 2000/07/29 14:52:25 sg
|
||||||
* Modified the copyright notice to remove ambiguities
|
* Modified the copyright notice to remove ambiguities
|
||||||
|
|
||||||
Revision 1.2 2000/07/13 11:33:07 michael
|
Revision 1.2 2000/07/13 11:33:07 michael
|
||||||
|
Loading…
Reference in New Issue
Block a user