From: Joey Hess Date: Fri, 21 Mar 2008 06:57:34 +0000 (-0400) Subject: another fix X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/cd6055a893287c0f6505f7ade7fb1ab61621a373 another fix I'm suprised that the second m//g didn't seem to clobber @-, but I don't want to rely on that, so preserve it beforehand. --- diff --git a/IkiWiki/Plugin/smiley.pm b/IkiWiki/Plugin/smiley.pm index fcf3048b2..124245b68 100644 --- a/IkiWiki/Plugin/smiley.pm +++ b/IkiWiki/Plugin/smiley.pm @@ -43,6 +43,8 @@ sub filter (@) { #{{{ MATCH: while (m{(?:^|(?<=\s))(\\?)$smiley_regexp(?:(?=\s)|$)}g) { my $escape=$1; my $smiley=$2; + my $epos=$-[1]; + my $spos=$-[2]; # Smilies are not allowed inside
 or .
 		# For each tag in turn, match forward to find the next 
@@ -60,11 +62,11 @@ MATCH:	while (m{(?:^|(?<=\s))(\\?)$smiley_regexp(?:(?=\s)|$)}g) {
 
 		if ($escape) {
 			# Remove escape.
-			substr($_, $-[1], 1)="";
+			substr($_, $epos, 1)="";
 		}
 		else {
 			# Replace the smiley with its expanded value.
-			substr($_, $-[2], length($smiley))=
+			substr($_, $spos, length($smiley))=
 				htmllink($params{page}, $params{destpage},
 				         $smileys{$smiley}, linktext => $smiley);
 		}