tweaks: drop two comments that contain variable names
Grepping for those names shouldn't find comments. Also, the name of the relevant boolean is clear enough to not need a comment.master
parent
9c70fdaef9
commit
1b1d60b9d7
|
@ -519,8 +519,6 @@ ssize_t do_replace_loop(const char *needle, bool whole_word_only,
|
||||||
linestruct *top, *bot;
|
linestruct *top, *bot;
|
||||||
size_t top_x, bot_x;
|
size_t top_x, bot_x;
|
||||||
bool right_side_up = FALSE;
|
bool right_side_up = FALSE;
|
||||||
/* TRUE if (mark_begin, mark_begin_x) is the top of the mark,
|
|
||||||
* FALSE if (current, current_x) is. */
|
|
||||||
|
|
||||||
/* If the mark is on, frame the region, and turn the mark off. */
|
/* If the mark is on, frame the region, and turn the mark off. */
|
||||||
if (openfile->mark) {
|
if (openfile->mark) {
|
||||||
|
|
|
@ -2245,11 +2245,9 @@ bool fix_spello(const char *word)
|
||||||
bool result;
|
bool result;
|
||||||
/* The return value of searching for a misspelled word. */
|
/* The return value of searching for a misspelled word. */
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
bool right_side_up = FALSE;
|
|
||||||
/* TRUE if (mark_begin, mark_begin_x) is the top of the mark,
|
|
||||||
* FALSE if (current, current_x) is. */
|
|
||||||
linestruct *top, *bot;
|
linestruct *top, *bot;
|
||||||
size_t top_x, bot_x;
|
size_t top_x, bot_x;
|
||||||
|
bool right_side_up = FALSE;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Save the current search string, then set it to the misspelled word. */
|
/* Save the current search string, then set it to the misspelled word. */
|
||||||
|
|
Loading…
Reference in New Issue