nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 5b9f52265a45e69d2fe7e856755f472ccf19bcb3
parent a049c8364f4c7de685a49a9b76e9a24faf91040f
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Mon, 13 Jun 2005 02:22:44 +0000

cosmetic fix


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2638 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Msrc/winio.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/winio.c b/src/winio.c @@ -3957,7 +3957,7 @@ void do_replace_highlight(bool highlight_flag, const char *word) #ifdef HAVE_REGEX_H /* This is so we can show zero-length regexes. */ if (word_len == 0) - waddstr(edit, " "); + waddch(edit, ' '); else #endif waddnstr(edit, word, actual_x(word, y));