tweaks: rename a variable, for clarity

master
Benno Schulenberg 2018-04-13 10:22:39 +02:00
parent c8b26baee8
commit 7a09b655c1
1 changed files with 5 additions and 5 deletions

View File

@ -28,8 +28,8 @@
static bool came_full_circle = FALSE;
/* Have we reached the starting line again while searching? */
static bool regexp_compiled = FALSE;
/* Have we compiled any regular expressions? */
static bool have_compiled_regexp = FALSE;
/* Whether we have compiled a regular expression for the search. */
/* Compile the given regular expression and store it in search_regexp.
* Return TRUE if the expression is valid, and FALSE otherwise. */
@ -50,7 +50,7 @@ bool regexp_init(const char *regexp)
return FALSE;
}
regexp_compiled = TRUE;
have_compiled_regexp = TRUE;
return TRUE;
}
@ -70,9 +70,9 @@ void not_found_msg(const char *str)
* full screen refresh when the mark is on, in case the cursor has moved. */
void search_replace_abort(void)
{
if (regexp_compiled) {
regexp_compiled = FALSE;
if (have_compiled_regexp) {
regfree(&search_regexp);
have_compiled_regexp = FALSE;
}
#ifndef NANO_TINY
if (openfile->mark)