]> git.wh0rd.org Git - nano.git/commitdiff
Avoiding a spell-check error when the marked region is zero bytes long.
authorBenno Schulenberg <bensberg@justemail.net>
Mon, 23 Mar 2015 17:01:25 +0000 (17:01 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Mon, 23 Mar 2015 17:01:25 +0000 (17:01 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5155 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/text.c

index 208fb91c7e89dcad0438ba4a4b50d691fa8169ba..54af35013cc59b096d9e7e621fa725f1d2c93338 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2015-03-23  Benno Schulenberg  <bensberg@justemail.net>
+       * src/text.c (do_alt_speller): Avoid the spell checker reporting
+       an error when the marked region is zero bytes long.  The message
+       is not needed -- it gets printed by the caller.  This generalizes
+       the fix for Savannah bug #29393.
+
 2015-03-22  Chris Allegretta <chrisa@asty.org>
        * src/text.c (do_alt_speller): timestamp can just be a __time_t.
        Fixes compilation on win32.
index 4495c46718de57da82fc81ce455f9e5a3deae1b0..816f7616dc7da0e179cb26d70b6e0db63d378a45 100644 (file)
@@ -2692,15 +2692,14 @@ const char *do_alt_speller(char *tempfile_name)
     }
 #endif
 
-    if (openfile->totsize == 0) {
-       statusbar(_("Finished checking spelling"));
-       return NULL;
-    }
-
-    /* Get the timestamp of the temporary file. */
+    /* Get the timestamp and the size of the temporary file. */
     stat(tempfile_name, &spellfileinfo);
     timestamp = spellfileinfo.st_mtime;
 
+    /* If the number of bytes to check is zero, get out. */
+    if (spellfileinfo.st_size == 0)
+       return NULL;
+
     endwin();
 
     /* Set up an argument list to pass execvp(). */