commit 8b2f7bd5a268dc5aee8cbe0186ce250ce4b9215b
parent 611975634755e09d67d5217e079335f03ec7906e
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Mon, 3 Feb 2020 14:03:04 +0100
tweaks: drop a message that will never be seen
Since the previous commit, nano exits from curses mode soon after
this message is printed, so that the user does not have any time
to read it or even see it.
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/src/text.c b/src/text.c
@@ -2358,8 +2358,6 @@ const char *do_int_speller(const char *tempfile_name)
if (pipe(spell_fd) == -1 || pipe(sort_fd) == -1 || pipe(uniq_fd) == -1)
return _("Could not create pipe");
- statusbar(_("Creating misspelled word list, please wait..."));
-
/* Fork a process to run spell in. */
if ((pid_spell = fork()) == 0) {
/* Child: open the temporary file that holds the text to be checked. */