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.
This commit is contained in:
Benno Schulenberg 2020-02-03 14:03:04 +01:00
parent 6119756347
commit 8b2f7bd5a2
1 changed files with 0 additions and 2 deletions

View File

@ -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. */