Removing the variable 'added_magicline', as it will always be FALSE
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-d3aeb78583b8master
parent
5bb096d32f
commit
3d01486409
|
@ -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>
|
2015-07-10 Benno Schulenberg <bensberg@justemail.net>
|
||||||
* src/nano.c (delete_opennode): Plug a small memory leak.
|
* src/nano.c (delete_opennode): Plug a small memory leak.
|
||||||
* src/files.c (do_lockfile): Rename a variable; it does not contain
|
* src/files.c (do_lockfile): Rename a variable; it does not contain
|
||||||
|
|
18
src/text.c
18
src/text.c
|
@ -2321,8 +2321,6 @@ bool do_int_spell_fix(const char *word)
|
||||||
/* A storage place for the current flag settings. */
|
/* A storage place for the current flag settings. */
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
bool old_mark_set = openfile->mark_set;
|
bool old_mark_set = openfile->mark_set;
|
||||||
bool added_magicline = FALSE;
|
|
||||||
/* Whether we added a magicline after filebot. */
|
|
||||||
bool right_side_up = FALSE;
|
bool right_side_up = FALSE;
|
||||||
/* TRUE if (mark_begin, mark_begin_x) is the top of the mark,
|
/* TRUE if (mark_begin, mark_begin_x) is the top of the mark,
|
||||||
* FALSE if (current, current_x) is. */
|
* 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,
|
mark_order((const filestruct **)&top, &top_x,
|
||||||
(const filestruct **)&bot, &bot_x, &right_side_up);
|
(const filestruct **)&bot, &bot_x, &right_side_up);
|
||||||
filepart = partition_filestruct(top, top_x, bot, bot_x);
|
filepart = partition_filestruct(top, top_x, bot, bot_x);
|
||||||
if (!ISSET(NO_NEWLINES))
|
|
||||||
added_magicline = (openfile->filebot->data[0] != '\0');
|
|
||||||
openfile->mark_set = FALSE;
|
openfile->mark_set = FALSE;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -2418,11 +2414,6 @@ bool do_int_spell_fix(const char *word)
|
||||||
|
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
if (old_mark_set) {
|
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
|
/* Put the beginning and the end of the mark at the beginning
|
||||||
* and the end of the spell-checked text. */
|
* and the end of the spell-checked text. */
|
||||||
if (openfile->fileage == openfile->filebot)
|
if (openfile->fileage == openfile->filebot)
|
||||||
|
@ -2657,8 +2648,6 @@ const char *do_alt_speller(char *tempfile_name)
|
||||||
static char **spellargs = NULL;
|
static char **spellargs = NULL;
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
bool old_mark_set = openfile->mark_set;
|
bool old_mark_set = openfile->mark_set;
|
||||||
bool added_magicline = FALSE;
|
|
||||||
/* Whether we added a magicline after filebot. */
|
|
||||||
filestruct *top, *bot;
|
filestruct *top, *bot;
|
||||||
size_t top_x, bot_x;
|
size_t top_x, bot_x;
|
||||||
bool right_side_up = FALSE;
|
bool right_side_up = FALSE;
|
||||||
|
@ -2759,8 +2748,6 @@ const char *do_alt_speller(char *tempfile_name)
|
||||||
mark_order((const filestruct **)&top, &top_x,
|
mark_order((const filestruct **)&top, &top_x,
|
||||||
(const filestruct **)&bot, &bot_x, &right_side_up);
|
(const filestruct **)&bot, &bot_x, &right_side_up);
|
||||||
filepart = partition_filestruct(top, top_x, bot, bot_x);
|
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
|
/* Get the number of characters in the marked text, and subtract
|
||||||
* it from the saved value of totsize. */
|
* it from the saved value of totsize. */
|
||||||
|
@ -2782,11 +2769,6 @@ const char *do_alt_speller(char *tempfile_name)
|
||||||
else
|
else
|
||||||
openfile->mark_begin_x = strlen(openfile->filebot->data);
|
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
|
/* Unpartition the filestruct so that it contains all the text
|
||||||
* again. Note that we've replaced the marked text originally
|
* again. Note that we've replaced the marked text originally
|
||||||
* in the partition with the spell-checked marked text in the
|
* in the partition with the spell-checked marked text in the
|
||||||
|
|
Loading…
Reference in New Issue