commit 33d07ef05539fac51b2d804ac12dea2304791bcb
parent f26d38619125d1cc820d9c7346ce91979d625a80
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Mon, 13 Jun 2005 03:19:50 +0000
in do_replace_loop(), simplify the display_string() call that we use to
get the word that we're going to highlight
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2642 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -191,6 +191,8 @@ CVS code -
work properly when we've replaced one or more instances of a
string in copy and haven't yet updated current->data to match
copy. (DLR)
+ - Simplify the display_string() call that we use to get the word
+ that we're going to highlight. (DLR)
- utils.c:
num_of_digits()
- Use a size_t instead of an int, and rename to digits(). (DLR)
diff --git a/src/search.c b/src/search.c
@@ -754,8 +754,7 @@ ssize_t do_replace_loop(const char *needle, const filestruct
char *exp_word;
size_t xpt = xplustabs();
- exp_word = display_string(current->data, xpt,
- strnlenpt(current->data, match_len + current_x) - xpt,
+ exp_word = display_string(current->data, xpt, match_len,
FALSE);
curs_set(0);