Skip to content

Commit

Permalink
Remove $-notation in a field matcher expression (#709)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwagner84 authored Nov 20, 2023
1 parent 077fff6 commit 7005a89
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions crates/pica-matcher/src/field_matcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,13 +160,7 @@ fn parse_subfields_matcher_dot(
(
parse_tag_matcher,
parse_occurrence_matcher,
preceded(
alt((
'.',
ws('$'), // FIXME: remove legacy snytax
)),
parse_subfield_singleton_matcher,
),
preceded('.', parse_subfield_singleton_matcher),
)
.map(|(t, o, s)| SubfieldsMatcher {
tag_matcher: t,
Expand Down

0 comments on commit 7005a89

Please sign in to comment.