Skip to content

Commit

Permalink
ignore less
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Mar 17, 2024
1 parent a0acae2 commit 7524606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bibcop.pl
Expand Up @@ -579,7 +579,7 @@ sub fix_author {
my @authors = split(/\s+and\s+/, $value);
foreach my $author (@authors) {
$author =~ s/^\s+|\s+$//g;
if (index($author, '{') != -1 or index($author, '}') != -1) {
if (index($author, ' {') != -1 or index($author, '} ') != -1) {
next;
}
$author =~ s/ ([A-Z])($| )/ $1.$2/g;
Expand Down

0 comments on commit 7524606

Please sign in to comment.