From 20d9070aa1b5e86d50480bcc272cd0b67b23ae3c Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Sat, 27 Apr 2019 16:31:57 +0200 Subject: [PATCH] tweaks: move an assignment that is useful only when searching forward --- src/search.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/search.c b/src/search.c index 3380625c..d40c8b9d 100644 --- a/src/search.c +++ b/src/search.c @@ -868,8 +868,7 @@ void do_gotolinecolumn_void(void) bool find_bracket_match(bool reverse, const char *bracket_set) { linestruct *line = openfile->current; - const char *pointer = line->data + openfile->current_x; - const char *found = NULL; + const char *pointer, *found; /* Step away from the current bracket, either backwards or forwards. */ if (reverse) { @@ -881,7 +880,7 @@ bool find_bracket_match(bool reverse, const char *bracket_set) } else pointer = line->data + move_mbleft(line->data, openfile->current_x); } else - pointer += move_mbright(pointer, 0); + pointer = line->data + move_mbright(line->data, openfile->current_x); /* Now seek for any of the two brackets, either backwards or forwards. */ while (TRUE) {