From b962f7166d44d95cf01611c5bd4a667f33aff327 Mon Sep 17 00:00:00 2001 From: Yegor Bugayenko Date: Fri, 15 Mar 2024 14:29:01 +0300 Subject: [PATCH] #76 more --- bibcop.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bibcop.pl b/bibcop.pl index 195b7b2..9d376d4 100755 --- a/bibcop.pl +++ b/bibcop.pl @@ -669,7 +669,7 @@ sub fix_booktitle { $value = 'Proceedings of the ' . $value; } $value =~ s/ (19|20)[0-9]{2} / /g; - my @orgs = qw/ACM IEEE ACM\/IEEE/; + my @orgs = qw/ACM IEEE ACM\/IEEE IEEE\/ACM/; foreach my $org (@orgs) { $value =~ s/ \Q$org\E / /g; }