From a3ae35453dab6996576eba21052f81523e4708e4 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sun, 23 May 2010 01:20:57 +0000 Subject: [PATCH] Extraneous "and" in interactive-edit "replace" command caused chaining to fail -- fixed --- modules/ideone.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ideone.pl b/modules/ideone.pl index bb464dc9..8e6b26fb 100755 --- a/modules/ideone.pl +++ b/modules/ideone.pl @@ -157,7 +157,7 @@ while(1) { $text = $e; $text =~ s/^'//; $text =~ s/'$//; - $subcode = "replace $modifier '$text' with '' and $r"; + $subcode = "replace $modifier '$text' with ''$r"; } else { print "$nick: Unbalanced single quotes. Usage: !cc remove [all, first, .., tenth, last] 'text' [and ...]\n"; exit 0;