Commit 28933cf5 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

tweaks: remove two superfluous checks, and restrict two others

When 'refresh_needed' is already TRUE, there is no need any more
to check whether it should be set.

[Those first two calls are leftovers from before the time that
reset_multis() morphed into check_the_multis().]
parent 1635060b
Showing with 3 additions and 10 deletions
+3 -10
......@@ -188,10 +188,6 @@ void do_cut_text(bool copy_text, bool cut_till_eof)
refresh_needed = TRUE;
#ifdef ENABLE_COLOR
check_the_multis(openfile->current);
#endif
#ifdef DEBUG
dump_filestruct(cutbuffer);
#endif
......@@ -286,8 +282,4 @@ void do_uncut_text(void)
set_modified();
refresh_needed = TRUE;
#ifdef ENABLE_COLOR
check_the_multis(openfile->current);
#endif
}
......@@ -1779,7 +1779,7 @@ int do_input(bool allow_funcs)
wrap_reset();
#endif
#ifdef ENABLE_COLOR
if (f && !f->viewok)
if (f && !f->viewok && !refresh_needed)
check_the_multis(openfile->current);
#endif
if (!refresh_needed && (s->scfunc == do_delete || s->scfunc == do_backspace))
......@@ -1893,7 +1893,8 @@ void do_output(char *output, size_t output_len, bool allow_cntrls)
openfile->placewewant = xplustabs();
#ifdef ENABLE_COLOR
check_the_multis(openfile->current);
if (!refresh_needed)
check_the_multis(openfile->current);
#endif
if (!refresh_needed)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment