]> git.wh0rd.org Git - nano.git/commitdiff
Removing the variable 'added_magicline', as it will always be FALSE
authorBenno Schulenberg <bensberg@justemail.net>
Sun, 12 Jul 2015 19:20:46 +0000 (19:20 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Sun, 12 Jul 2015 19:20:46 +0000 (19:20 +0000)
and thus will never cause anything to be done.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5293 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/text.c

index 139abe9339ed44b6703a8360fcb2fb58321f7a54..6ecb2df0c829662a971ba089036c1d57e054fa2d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-07-12  Benno Schulenberg  <bensberg@justemail.net>
+       * src/text.c (do_int_spell_fix, do_alt_speller): Remove the variable
+       'added_magicline', as it will always be FALSE and thus does nothing.
+
 2015-07-10  Benno Schulenberg  <bensberg@justemail.net>
        * src/nano.c (delete_opennode): Plug a small memory leak.
        * src/files.c (do_lockfile): Rename a variable; it does not contain
index 22fa332409c810e1bfebc4e2eb0cf8a26bd3b598..93cad33a35f6e7686a4557a9b56dda5e50241c08 100644 (file)
@@ -2321,8 +2321,6 @@ bool do_int_spell_fix(const char *word)
        /* A storage place for the current flag settings. */
 #ifndef NANO_TINY
     bool old_mark_set = openfile->mark_set;
-    bool added_magicline = FALSE;
-       /* Whether we added a magicline after filebot. */
     bool right_side_up = FALSE;
        /* TRUE if (mark_begin, mark_begin_x) is the top of the mark,
         * FALSE if (current, current_x) is. */
@@ -2365,8 +2363,6 @@ bool do_int_spell_fix(const char *word)
        mark_order((const filestruct **)&top, &top_x,
            (const filestruct **)&bot, &bot_x, &right_side_up);
        filepart = partition_filestruct(top, top_x, bot, bot_x);
-       if (!ISSET(NO_NEWLINES))
-           added_magicline = (openfile->filebot->data[0] != '\0');
        openfile->mark_set = FALSE;
     }
 #endif
@@ -2418,11 +2414,6 @@ bool do_int_spell_fix(const char *word)
 
 #ifndef NANO_TINY
     if (old_mark_set) {
-       /* If the mark was on, the NO_NEWLINES flag isn't set, and we
-        * added a magicline, remove it now. */
-       if (!ISSET(NO_NEWLINES) && added_magicline)
-           remove_magicline();
-
        /* Put the beginning and the end of the mark at the beginning
         * and the end of the spell-checked text. */
        if (openfile->fileage == openfile->filebot)
@@ -2657,8 +2648,6 @@ const char *do_alt_speller(char *tempfile_name)
     static char **spellargs = NULL;
 #ifndef NANO_TINY
     bool old_mark_set = openfile->mark_set;
-    bool added_magicline = FALSE;
-       /* Whether we added a magicline after filebot. */
     filestruct *top, *bot;
     size_t top_x, bot_x;
     bool right_side_up = FALSE;
@@ -2759,8 +2748,6 @@ const char *do_alt_speller(char *tempfile_name)
        mark_order((const filestruct **)&top, &top_x,
                (const filestruct **)&bot, &bot_x, &right_side_up);
        filepart = partition_filestruct(top, top_x, bot, bot_x);
-       if (!ISSET(NO_NEWLINES))
-           added_magicline = (openfile->filebot->data[0] != '\0');
 
        /* Get the number of characters in the marked text, and subtract
         * it from the saved value of totsize. */
@@ -2782,11 +2769,6 @@ const char *do_alt_speller(char *tempfile_name)
        else
            openfile->mark_begin_x = strlen(openfile->filebot->data);
 
-       /* If the mark was on, the NO_NEWLINES flag isn't set, and we
-        * added a magicline, remove it now. */
-       if (!ISSET(NO_NEWLINES) && added_magicline)
-           remove_magicline();
-
        /* Unpartition the filestruct so that it contains all the text
         * again.  Note that we've replaced the marked text originally
         * in the partition with the spell-checked marked text in the