Commit a73025d7 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

in do_replace_highlight(), call wnoutrefresh(edit) to make sure that the

highlight is drawn properly


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2800 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 5 additions and 0 deletions
+5 -0
...@@ -392,6 +392,8 @@ CVS code - ...@@ -392,6 +392,8 @@ CVS code -
have a zero-length regex. (DLR) have a zero-length regex. (DLR)
- Rename variable highlight_flag to highlight, for consistency. - Rename variable highlight_flag to highlight, for consistency.
(DLR) (DLR)
- Call wnoutrefresh(edit) to make sure that the highlight is
drawn properly. (DLR)
do_credits() do_credits()
- Save the keystroke that breaks us out of the credits (if any) - Save the keystroke that breaks us out of the credits (if any)
and put it back so that it isn't lost. This is especially and put it back so that it isn't lost. This is especially
......
...@@ -4013,6 +4013,9 @@ void do_replace_highlight(bool highlight, const char *word) ...@@ -4013,6 +4013,9 @@ void do_replace_highlight(bool highlight, const char *word)
if (highlight) if (highlight)
wattroff(edit, A_REVERSE); wattroff(edit, A_REVERSE);
/* Refresh the edit window. */
wnoutrefresh(edit);
} }
#ifndef NDEBUG #ifndef NDEBUG
......
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