Skip to content

Commit

Permalink
Fix control sequence bug
Browse files Browse the repository at this point in the history
  • Loading branch information
CraftSpider committed Mar 7, 2024
1 parent 59499be commit 42cffad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/engine_bibtex/src/exec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1786,7 +1786,7 @@ fn interp_purify(
| ControlSeq::UpperOE
| ControlSeq::LowerAE
| ControlSeq::UpperAE
| ControlSeq::UpperL => {
| ControlSeq::LowerSS => {
scratch[write_idx] = scratch[old_idx + 1];
write_idx += 1;
}
Expand Down
4 changes: 1 addition & 3 deletions tests/bibtex/cites/control_seq.blg
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ Capacity: max_strings=35307, hash_size=35307, hash_prime=30011
The top-level auxiliary file: control_seq.aux
The style file: ../plain.bst
Database file #1: control_seq.bib
Warning--"i j oe OE ae AE a A o O l L} s" isn't a brace-balanced string for entry SequenceExample
while executing--line 1049 of file ../plain.bst
Warning--empty publisher in SequenceExample
Warning--empty year in SequenceExample
(There were 3 warnings)
(There were 2 warnings)

0 comments on commit 42cffad

Please sign in to comment.