remove /i from regexp

Nothing case-oriented going on in here.
master
Joey Hess 2009-10-04 20:35:02 -04:00
parent b0314296a8
commit d797b9ab0e
1 changed files with 1 additions and 1 deletions

View File

@ -1870,7 +1870,7 @@ sub pagespec_translate ($) {
[^\s()]+ # any other text
)
\s* # ignore whitespace
}igx) {
}gx) {
my $word=$1;
if (lc $word eq 'and') {
$code.=' &&';