From: Joey Hess Date: Fri, 21 Mar 2008 09:08:04 +0000 (-0400) Subject: work around perl warning X-Git-Url: https://scripts.mit.edu/gitweb/www/ikiwiki.git/commitdiff_plain/14b3e645a8e66fe3cc6ff3e7852c7526da4ca906 work around perl warning --- diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm index 3edfbc531..9b2caffcf 100644 --- a/IkiWiki/Plugin/inline.pm +++ b/IkiWiki/Plugin/inline.pm @@ -59,7 +59,7 @@ sub format (@) { #{{{ # Fill in the inline content generated earlier. This is actually an # optimisation. $params{content}=~s{
}{ - delete @inline[$1] + delete @inline[$1,] }eg; return $params{content}; } #}}}