aboutsummaryrefslogtreecommitdiffstats
path: root/src/xml/parsers.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/xml/parsers.rs')
-rw-r--r--src/xml/parsers.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xml/parsers.rs b/src/xml/parsers.rs
index 93ff5b1..232ebd0 100644
--- a/src/xml/parsers.rs
+++ b/src/xml/parsers.rs
@@ -1082,8 +1082,8 @@ impl<'s> Parser<'s, DefaultDecl<'s>> for DefaultDecl<'s> {
value(DefaultDecl::Required, tag("#REQUIRED")),
value(DefaultDecl::Implied, tag("#IMPLIED")),
map(
- preceded(opt(pair(tag("#FIXED"), S::parse)), AttValue::parse),
- |att_value| DefaultDecl::Fixed(att_value),
+ pair(opt(pair(tag("#FIXED"), S::parse)), AttValue::parse),
+ |(must, att_value)| DefaultDecl::Fixed(must.is_some(), att_value),
),
))(input)
}
@@ -1272,9 +1272,9 @@ impl<'s> Parser<'s, EntityDef<'s>> for EntityDef<'s> {
}),
map(
pair(ExternalID::parse, opt(NDataDecl::parse)),
- |(external_id, ndata_decl)| EntityDef::ExternalID {
+ |(external_id, n_data_decl)| EntityDef::ExternalID {
external_id,
- ndata_decl,
+ n_data_decl,
},
),
))(input)