Commit 21b946e4 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

in do_replace_highlight(), include the code to display zero-length

matches even when regex.h isn't found, as it can also be used to display
zero-length Unicode characters


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3954 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 8269ae3c
Showing with 6 additions and 3 deletions
+6 -3
......@@ -13,6 +13,11 @@ CVS code -
overwriting an existing file when in restricted mode. (DLR)
- Fix problem where a file could sometimes be overwritten
without a warning prompt. (DLR)
- winio.c:
do_replace_highlight()
- Include the code to display zero-length matches even when
regex.h isn't found, as it can also be used to display
zero-length Unicode characters. (DLR)
- doc/rnano.1, doc/fr/rnano.1:
- Add missing "(C)" to the copyright notice in the comments.
(DLR)
......
......@@ -3124,12 +3124,10 @@ void do_replace_highlight(bool highlight, const char *word)
if (highlight)
wattron(edit, reverse_attr);
#ifdef HAVE_REGEX_H
/* This is so we can show zero-length regex matches. */
/* This is so we can show zero-length matches. */
if (word_len == 0)
waddch(edit, ' ');
else
#endif
waddnstr(edit, word, actual_x(word, y));
if (word_len > y)
......
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