From: Joey Hess Date: Mon, 5 Oct 2009 00:35:02 +0000 (-0400) Subject: remove /i from regexp X-Git-Tag: 3.20091009~43 X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/d797b9ab0e4d7323ad769229dc98f57dc4f08f02 remove /i from regexp Nothing case-oriented going on in here. --- diff --git a/IkiWiki.pm b/IkiWiki.pm index 2637f6017..97d84c9de 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -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.=' &&';