diff --git a/ChangeLog b/ChangeLog
index 2e8934418a578ba4aba7ab895f95f1b2cd81fad2..1d5a89351f97e69a750517383cce94906aebc416 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -168,6 +168,9 @@ Changes
 	- Fix bug where if text on the magicline was replaced (which can
 	  be done via a regexp replace of "^$" with something other than
 	  ""), a new magicline wouldn't be created. (DLR)
+	- Remove check for answer being a blank string, presumed to be
+	  a PICO_MODE holdover, but it stops us from doing a blank 
+	  spelling replacement.
   do_replace()
 	- For greater Pico compatibility, when an attempt to replace a
 	  string results in 0 replacements due to the string's not being
diff --git a/search.c b/search.c
index d00276443c3d14ab9db72ae2bf090c09cc371025..e5e6449c0daf6d89c737620bee3e107e55b08a38 100644
--- a/search.c
+++ b/search.c
@@ -571,9 +571,6 @@ int do_replace_loop(const char *prevanswer, const filestruct *begin,
         }
     }
 
-    if (answer[0] == '\0')
-	answer = mallocstrcpy(answer, last_replace);
-
     last_replace = mallocstrcpy(last_replace, answer);
     while (1) {
 	/* Sweet optimization by Rocco here */