repl: preserve the cursor when redisplaying the prompt on SIGCONT

Otherwise the cursor position was being reset to 0, even when there was
already part of a line, which was strange.

Part of #3295.
diff --git a/lib/repl.js b/lib/repl.js
index 889a9f0..26f081c 100644
--- a/lib/repl.js
+++ b/lib/repl.js
@@ -306,7 +306,7 @@
   });
 
   rli.on('SIGCONT', function() {
-    self.displayPrompt();
+    self.displayPrompt(true);
   });
 
   self.displayPrompt();