aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-10-04 20:35:02 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-10-04 20:35:02 -0400
commitd797b9ab0e4d7323ad769229dc98f57dc4f08f02 (patch)
tree44c3ec29d9f731664b8dc9ca522d3f543e744041 /IkiWiki.pm
parentb0314296a8a3bf4293850003790bedec44911796 (diff)
downloadikiwiki-d797b9ab0e4d7323ad769229dc98f57dc4f08f02.tar
ikiwiki-d797b9ab0e4d7323ad769229dc98f57dc4f08f02.tar.gz
remove /i from regexp
Nothing case-oriented going on in here.
Diffstat (limited to 'IkiWiki.pm')
-rw-r--r--IkiWiki.pm2
1 files changed, 1 insertions, 1 deletions
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.=' &&';