]> sipb.mit.edu Git - ikiwiki.git/commitdiff
remove /i from regexp
authorJoey Hess <joey@gnu.kitenet.net>
Mon, 5 Oct 2009 00:35:02 +0000 (20:35 -0400)
committerJoey Hess <joey@gnu.kitenet.net>
Mon, 5 Oct 2009 00:35:02 +0000 (20:35 -0400)
Nothing case-oriented going on in here.

IkiWiki.pm

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