diff --git a/ChangeLog b/ChangeLog
index 1d61389bf45e91e30d8b7deddfb517d2e0d29a29..1bf4eb44b2c5751664e532f5c41ac211de879ba7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -299,11 +299,11 @@ CVS code -
 	  consistency. (DLR)
 	- Rename variables def and ret to curranswer and retval to avoid
 	  confusion. (DLR)
-	- Call wnoutrefresh(bottomwin) and reset_cursor() after getting
-	  an answer and blanking out the statusbar, to make sure that
-	  the blanking is done.  This fixes a problem where the
-	  statusbar is not properly blanked after using the "Go To Line"
-	  prompt with the NO_HELP flag set. (DLR)
+	- Call wnoutrefresh(bottomwin) after getting an answer and
+	  blanking out the statusbar, to make sure that the blanking is
+	  done.  This fixes a problem where the statusbar is not
+	  properly blanked after using the "Go To Line" prompt with the
+	  NO_HELP flag set. (DLR)
   do_help()
 	- Don't treat NANO_CANCEL_KEY as NANO_EXIT_KEY anymore, for
 	  consistency. (DLR)
diff --git a/src/winio.c b/src/winio.c
index 68ca7121f643bdd8e76045aac72dd8f6f5a0ad36..95ad06fc32d1f5d6c19eead244d3d90cffd0243c 100644
--- a/src/winio.c
+++ b/src/winio.c
@@ -2660,7 +2660,6 @@ int statusq(bool allow_tabs, const shortcut *s, const char *curranswer,
 
     blank_statusbar();
     wnoutrefresh(bottomwin);
-    reset_cursor();
 
 #ifdef DEBUG
     fprintf(stderr, "answer = \"%s\"\n", answer);