search.c 39.9 KB
Newer Older
Chris Allegretta's avatar
Chris Allegretta committed
1
/* $Id$ */
Chris Allegretta's avatar
Chris Allegretta committed
2
3
4
/**************************************************************************
 *   search.c                                                             *
 *                                                                        *
5
 *   Copyright (C) 1999-2004 Chris Allegretta                             *
6
 *   Copyright (C) 2005-2006 David Lawrence Ramsey                        *
Chris Allegretta's avatar
Chris Allegretta committed
7
8
 *   This program is free software; you can redistribute it and/or modify *
 *   it under the terms of the GNU General Public License as published by *
9
 *   the Free Software Foundation; either version 2, or (at your option)  *
Chris Allegretta's avatar
Chris Allegretta committed
10
11
 *   any later version.                                                   *
 *                                                                        *
12
13
14
15
 *   This program is distributed in the hope that it will be useful, but  *
 *   WITHOUT ANY WARRANTY; without even the implied warranty of           *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU    *
 *   General Public License for more details.                             *
Chris Allegretta's avatar
Chris Allegretta committed
16
17
18
 *                                                                        *
 *   You should have received a copy of the GNU General Public License    *
 *   along with this program; if not, write to the Free Software          *
19
20
 *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA            *
 *   02110-1301, USA.                                                     *
Chris Allegretta's avatar
Chris Allegretta committed
21
22
23
 *                                                                        *
 **************************************************************************/

24
#include "proto.h"
25

Chris Allegretta's avatar
Chris Allegretta committed
26
27
#include <string.h>
#include <stdio.h>
28
#include <unistd.h>
Chris Allegretta's avatar
Chris Allegretta committed
29
#include <ctype.h>
30
#include <errno.h>
Chris Allegretta's avatar
Chris Allegretta committed
31

32
33
static bool search_last_line = FALSE;
	/* Have we gone past the last line while searching? */
34
#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
35
36
37
static bool history_changed = FALSE;
	/* Have any of the history lists changed? */
#endif
38
#ifdef HAVE_REGEX_H
39
40
static bool regexp_compiled = FALSE;
	/* Have we compiled any regular expressions? */
41
42
43
44
45
46

/* Regular expression helper functions. */

/* Compile the given regular expression.  Return value 0 means the
 * expression was invalid, and we wrote an error message on the status
 * bar.  Return value 1 means success. */
47
int regexp_init(const char *regexp)
48
{
49
    int rc = regcomp(&search_regexp, regexp, REG_EXTENDED
50
#ifndef NANO_TINY
51
52
53
	| (ISSET(CASE_SENSITIVE) ? 0 : REG_ICASE)
#endif
	);
54
55

    assert(!regexp_compiled);
56

57
58
59
60
61
62
63
    if (rc != 0) {
	size_t len = regerror(rc, &search_regexp, NULL, 0);
	char *str = charalloc(len);

	regerror(rc, &search_regexp, str, len);
	statusbar(_("Bad regex \"%s\": %s"), regexp, str);
	free(str);
64
	return 0;
65
    }
66

67
    regexp_compiled = TRUE;
68
    return 1;
69
70
}

71
72
/* Decompile the compiled regular expression we used in the last
 * search, if any. */
73
void regexp_cleanup(void)
74
{
75
76
    if (regexp_compiled) {
	regexp_compiled = FALSE;
77
78
	regfree(&search_regexp);
    }
79
}
80
#endif
81

82
83
/* Indicate on the statusbar that the string at str was not found by the
 * last search. */
84
85
void not_found_msg(const char *str)
{
86
87
88
    char *disp;
    int numchars;
 
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
89
    assert(str != NULL);
90

91
    disp = display_string(str, 0, (COLS / 2) + 1, FALSE);
92
    numchars = actual_x(disp, mbstrnlen(disp, COLS / 2));
93
94

    statusbar(_("\"%.*s%s\" not found"), numchars, disp,
95
	(disp[numchars] == '\0') ? "" : "...");
96
97

    free(disp);
98
99
}

100
101
102
103
104
/* Abort the current search or replace.  Clean up by displaying the main
 * shortcut list, updating the screen if the mark was on before, and
 * decompiling the compiled regular expression we used in the last
 * search, if any. */
void search_replace_abort(void)
105
106
{
    display_main_list();
107
#ifndef NANO_TINY
108
    if (openfile->mark_set)
109
110
	edit_refresh();
#endif
111
#ifdef HAVE_REGEX_H
112
    regexp_cleanup();
113
114
115
#endif
}

116
/* Initialize the global search and replace strings. */
Chris Allegretta's avatar
Chris Allegretta committed
117
118
void search_init_globals(void)
{
119
120
121
122
    if (last_search == NULL)
	last_search = mallocstrcpy(NULL, "");
    if (last_replace == NULL)
	last_replace = mallocstrcpy(NULL, "");
Chris Allegretta's avatar
Chris Allegretta committed
123
124
}

125
/* Set up the system variables for a search or replace.  If use_answer
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
126
127
128
129
130
 * is TRUE, only set backupstring to answer.  Return -2 to run the
 * opposite program (search -> replace, replace -> search), return -1 if
 * the search should be canceled (due to Cancel, a blank search string,
 * Go to Line, or a failed regcomp()), return 0 on success, and return 1
 * on rerun calling program.
Chris Allegretta's avatar
Chris Allegretta committed
131
 *
132
133
134
 * replacing is TRUE if we call from do_replace(), and FALSE if called
 * from do_search(). */
int search_init(bool replacing, bool use_answer)
Chris Allegretta's avatar
Chris Allegretta committed
135
{
136
    int i = 0;
137
    char *buf;
138
    static char *backupstring = NULL;
139
140
141
142
143
144
145
146
147
148
149
	/* The search string we'll be using. */

    /* If backupstring doesn't exist, initialize it to "". */
    if (backupstring == NULL)
	backupstring = mallocstrcpy(NULL, "");

    /* If use_answer is TRUE, set backupstring to answer and get out. */
    if (use_answer) {
	backupstring = mallocstrcpy(backupstring, answer);
	return 0;
    }
150
151
152
153

    /* We display the search prompt below.  If the user types a partial
     * search string and then Replace or a toggle, we will return to
     * do_search() or do_replace() and be called again.  In that case,
154
     * we should put the same search string back up. */
155

Chris Allegretta's avatar
Chris Allegretta committed
156
    search_init_globals();
157

158
    if (last_search[0] != '\0') {
159
	char *disp = display_string(last_search, 0, COLS / 3, FALSE);
160

161
	buf = charalloc(strlen(disp) + 7);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
162
	/* We use (COLS / 3) here because we need to see more on the
163
	 * line. */
164
	sprintf(buf, " [%s%s]", disp,
165
		(strlenpt(last_search) > COLS / 3) ? "..." : "");
166
	free(disp);
167
168
    } else
	buf = mallocstrcpy(NULL, "");
Chris Allegretta's avatar
Chris Allegretta committed
169

170
    /* This is now one simple call.  It just does a lot. */
171
172
173
174
175
    i = do_prompt(FALSE,
#ifndef DISABLE_TABCOMP
	TRUE,
#endif
	replacing ? replace_list : whereis_list, backupstring,
176
#ifndef NANO_TINY
177
	&search_history,
178
#endif
179
	edit_refresh, "%s%s%s%s%s%s", _("Search"),
180
#ifndef NANO_TINY
181
182
	/* This string is just a modifier for the search prompt; no
	 * grammar is implied. */
183
184
	ISSET(CASE_SENSITIVE) ? _(" [Case Sensitive]") :
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
185
	"",
186
#ifdef HAVE_REGEX_H
187
188
	/* This string is just a modifier for the search prompt; no
	 * grammar is implied. */
189
190
	ISSET(USE_REGEXP) ? _(" [Regexp]") :
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
191
	"",
192
#ifndef NANO_TINY
193
194
	/* This string is just a modifier for the search prompt; no
	 * grammar is implied. */
195
	ISSET(BACKWARDS_SEARCH) ? _(" [Backwards]") :
196
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
197
	"", replacing ?
198
#ifndef NANO_TINY
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
199
	openfile->mark_set ? _(" (to replace) in selection") :
200
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
201
	_(" (to replace)") : "", buf);
Chris Allegretta's avatar
Chris Allegretta committed
202

203
    /* Release buf now that we don't need it anymore. */
Chris Allegretta's avatar
Chris Allegretta committed
204
205
    free(buf);

206
207
208
    free(backupstring);
    backupstring = NULL;

209
210
211
    /* Cancel any search, or just return with no previous search. */
    if (i == -1 || (i < 0 && last_search[0] == '\0') ||
	    (!replacing && i == 0 && answer[0] == '\0')) {
212
	statusbar(_("Cancelled"));
Chris Allegretta's avatar
Chris Allegretta committed
213
	return -1;
Chris Allegretta's avatar
Chris Allegretta committed
214
215
    } else {
	switch (i) {
216
217
	    case -2:		/* It's an empty string. */
	    case 0:		/* It's a new string. */
218
#ifdef HAVE_REGEX_H
219
220
221
222
223
		/* Use last_search if answer is an empty string, or
		 * answer if it isn't. */
		if (ISSET(USE_REGEXP) &&
			regexp_init((i == -2) ? last_search :
			answer) == 0)
224
		    return -1;
225
#endif
226
		break;
227
#ifndef NANO_TINY
228
229
230
231
232
	    case TOGGLE_CASE_KEY:
		TOGGLE(CASE_SENSITIVE);
		backupstring = mallocstrcpy(backupstring, answer);
		return 1;
	    case TOGGLE_BACKWARDS_KEY:
233
		TOGGLE(BACKWARDS_SEARCH);
234
235
		backupstring = mallocstrcpy(backupstring, answer);
		return 1;
236
#endif
237
#ifdef HAVE_REGEX_H
238
	    case NANO_REGEXP_KEY:
239
240
241
		TOGGLE(USE_REGEXP);
		backupstring = mallocstrcpy(backupstring, answer);
		return 1;
242
#endif
243
244
245
246
	    case NANO_TOOTHERSEARCH_KEY:
		backupstring = mallocstrcpy(backupstring, answer);
		return -2;	/* Call the opposite search function. */
	    case NANO_TOGOTOLINE_KEY:
247
		do_gotolinecolumn(openfile->current->lineno,
248
249
			openfile->placewewant + 1, TRUE, TRUE, FALSE,
			TRUE);
250
251
				/* Put answer up on the statusbar and
				 * fall through. */
252
253
	    default:
		return -1;
Chris Allegretta's avatar
Chris Allegretta committed
254
	}
Chris Allegretta's avatar
Chris Allegretta committed
255
    }
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
256

Chris Allegretta's avatar
Chris Allegretta committed
257
258
259
    return 0;
}

260
261
/* Look for needle, starting at (current, current_x).  If no_sameline is
 * TRUE, skip over begin when looking for needle.  begin is the line
262
263
264
 * where we first started searching, at column begin_x.  The return
 * value specifies whether we found anything.  If we did, set needle_len
 * to the length of the string we found if it isn't NULL. */
265
266
267
268
269
270
bool findnextstr(
#ifndef DISABLE_SPELLER
	bool whole_word,
#endif
	bool no_sameline, const filestruct *begin, size_t begin_x, const
	char *needle, size_t *needle_len)
Chris Allegretta's avatar
Chris Allegretta committed
271
{
272
    size_t found_len;
273
	/* The length of the match we find. */
274
    size_t current_x_find = 0;
275
	/* The location in the current line of the match we find. */
276
    ssize_t current_y_find = openfile->current_y;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
277
278
    filestruct *fileptr = openfile->current;
    const char *rev_start = fileptr->data, *found = NULL;
279
280
281
282
283
284

    /* rev_start might end up 1 character before the start or after the
     * end of the line.  This won't be a problem because strstrwrapper()
     * will return immediately and say that no match was found, and
     * rev_start will be properly set when the search continues on the
     * previous or next line. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
285
    rev_start +=
286
#ifndef NANO_TINY
287
	ISSET(BACKWARDS_SEARCH) ?
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
288
	openfile->current_x - 1 :
289
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
290
	openfile->current_x + 1;
Chris Allegretta's avatar
Chris Allegretta committed
291

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
292
    /* Look for needle in the current line we're searching. */
293
    while (TRUE) {
294
	found = strstrwrapper(fileptr->data, needle, rev_start);
Chris Allegretta's avatar
Chris Allegretta committed
295

296
297
	/* We've found a potential match. */
	if (found != NULL) {
298
#ifndef DISABLE_SPELLER
299
300
	    bool found_whole = FALSE;
		/* Is this potential match a whole word? */
301
#endif
302
303

	    /* Set found_len to the length of the potential match. */
304
	    found_len =
305
#ifdef HAVE_REGEX_H
306
307
		ISSET(USE_REGEXP) ?
		regmatches[0].rm_eo - regmatches[0].rm_so :
308
#endif
309
		strlen(needle);
310

311
#ifndef DISABLE_SPELLER
312
313
	    /* If we're searching for whole words, see if this potential
	     * match is a whole word. */
314
	    if (whole_word) {
315
		char *word = mallocstrncpy(NULL, found, found_len + 1);
316
317
318
319
320
321
		word[found_len] = '\0';

		found_whole = is_whole_word(found - fileptr->data,
			fileptr->data, word);
		free(word);
	    }
322
#endif
323
324
325
326
327

	    /* If we're searching for whole words and this potential
	     * match isn't a whole word, or if we're not allowed to find
	     * a match on the same line we started on and this potential
	     * match is on that line, continue searching. */
328
329
330
331
332
	    if (
#ifndef DISABLE_SPELLER
		(!whole_word || found_whole) &&
#endif
		(!no_sameline || fileptr != openfile->current))
333
		break;
Chris Allegretta's avatar
Chris Allegretta committed
334
	}
335

336
	/* We've finished processing the file, so get out. */
337
	if (search_last_line) {
338
	    not_found_msg(needle);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
339
	    return FALSE;
340
	}
341

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
342
	/* Move to the previous or next line in the file. */
343
#ifndef NANO_TINY
344
	if (ISSET(BACKWARDS_SEARCH)) {
345
346
347
348
349
350
	    fileptr = fileptr->prev;
	    current_y_find--;
	} else {
#endif
	    fileptr = fileptr->next;
	    current_y_find++;
351
#ifndef NANO_TINY
352
	}
353
#endif
354

355
356
	/* We've reached the start or end of the buffer, so wrap
	 * around. */
357
	if (fileptr == NULL) {
358
#ifndef NANO_TINY
359
	    if (ISSET(BACKWARDS_SEARCH)) {
360
		fileptr = openfile->filebot;
361
362
		current_y_find = editwinrows - 1;
	    } else {
363
#endif
364
		fileptr = openfile->fileage;
365
		current_y_find = 0;
366
#ifndef NANO_TINY
367
368
	    }
#endif
369
	    statusbar(_("Search Wrapped"));
370
	}
Chris Allegretta's avatar
Chris Allegretta committed
371

372
	/* We've reached the original starting line. */
373
	if (fileptr == begin)
374
	    search_last_line = TRUE;
375

376
	rev_start = fileptr->data;
377
#ifndef NANO_TINY
378
	if (ISSET(BACKWARDS_SEARCH))
379
380
381
	    rev_start += strlen(fileptr->data);
#endif
    }
382

383
384
    /* We found an instance. */
    current_x_find = found - fileptr->data;
Chris Allegretta's avatar
Chris Allegretta committed
385

386
387
    /* Ensure we haven't wrapped around again! */
    if (search_last_line &&
388
#ifndef NANO_TINY
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
389
390
	((!ISSET(BACKWARDS_SEARCH) && current_x_find > begin_x) ||
	(ISSET(BACKWARDS_SEARCH) && current_x_find < begin_x))
391
#else
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
392
	current_x_find > begin_x
393
394
#endif
	) {
395
	not_found_msg(needle);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
396
	return FALSE;
Chris Allegretta's avatar
Chris Allegretta committed
397
398
    }

399
400
401
402
    /* We've definitely found something. */
    openfile->current = fileptr;
    openfile->current_x = current_x_find;
    openfile->placewewant = xplustabs();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
403
    openfile->current_y = current_y_find;
404
405

    /* needle_len holds the length of needle. */
406
407
    if (needle_len != NULL)
	*needle_len = found_len;
408

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
409
    return TRUE;
Chris Allegretta's avatar
Chris Allegretta committed
410
411
}

412
413
/* Clear the flag indicating that a search reached the last line of the
 * file.  We need to do this just before a new search. */
414
415
416
417
418
void findnextstr_wrap_reset(void)
{
    search_last_line = FALSE;
}

Chris Allegretta's avatar
Chris Allegretta committed
419
/* Search for a string. */
420
void do_search(void)
Chris Allegretta's avatar
Chris Allegretta committed
421
{
422
    filestruct *fileptr = openfile->current;
423
    size_t fileptr_x = openfile->current_x;
424
    size_t old_pww = openfile->placewewant;
425
426
    int i;
    bool didfind;
Chris Allegretta's avatar
Chris Allegretta committed
427

428
#ifndef DISABLE_WRAPPING
Chris Allegretta's avatar
Chris Allegretta committed
429
    wrap_reset();
430
#endif
431

432
    i = search_init(FALSE, FALSE);
433
434
    if (i == -1)	/* Cancel, Go to Line, blank search string, or
			 * regcomp() failed. */
435
	search_replace_abort();
436
    else if (i == -2)	/* Replace. */
Chris Allegretta's avatar
Chris Allegretta committed
437
	do_replace();
438
#if !defined(NANO_TINY) || defined(HAVE_REGEX_H)
439
440
    else if (i == 1)	/* Case Sensitive, Backwards, or Regexp search
			 * toggle. */
Chris Allegretta's avatar
Chris Allegretta committed
441
	do_search();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
442
#endif
443

444
    if (i != 0)
445
	return;
446
447

    /* If answer is now "", copy last_search into answer. */
Chris Allegretta's avatar
Chris Allegretta committed
448
    if (answer[0] == '\0')
449
450
451
452
	answer = mallocstrcpy(answer, last_search);
    else
	last_search = mallocstrcpy(last_search, answer);

453
#ifndef NANO_TINY
454
455
    /* If answer is not "", add this search string to the search history
     * list. */
Chris Allegretta's avatar
Chris Allegretta committed
456
    if (answer[0] != '\0')
457
	update_history(&search_history, answer);
458
#endif
459

460
    findnextstr_wrap_reset();
461
462
463
464
465
    didfind = findnextstr(
#ifndef DISABLE_SPELLER
	FALSE,
#endif
	FALSE, openfile->current, openfile->current_x, answer, NULL);
466

467
468
    /* Check to see if there's only one occurrence of the string and
     * we're on it now. */
469
470
    if (fileptr == openfile->current && fileptr_x ==
	openfile->current_x && didfind) {
471
472
473
474
475
476
#ifdef HAVE_REGEX_H
	/* Do the search again, skipping over the current line, if we're
	 * doing a bol and/or eol regex search ("^", "$", or "^$"), so
	 * that we find one only once per line.  We should only end up
	 * back at the same position if the string isn't found again, in
	 * which case it's the only occurrence. */
477
478
	if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		last_search)) {
479
480
481
482
483
	    didfind = findnextstr(
#ifndef DISABLE_SPELLER
		FALSE,
#endif
		TRUE, openfile->current,
484
485
486
		openfile->current_x, answer, NULL);
	    if (fileptr == openfile->current && fileptr_x ==
		openfile->current_x && !didfind)
487
488
489
490
491
492
493
494
		statusbar(_("This is the only occurrence"));
	} else {
#endif
	    statusbar(_("This is the only occurrence"));
#ifdef HAVE_REGEX_H
	}
#endif
    }
495

496
    openfile->placewewant = xplustabs();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
497
    edit_redraw(fileptr, old_pww);
498
    search_replace_abort();
Chris Allegretta's avatar
Chris Allegretta committed
499
500
}

501
#ifndef NANO_TINY
502
/* Search for the last string without prompting. */
503
void do_research(void)
504
{
505
    filestruct *fileptr = openfile->current;
506
    size_t fileptr_x = openfile->current_x;
507
    size_t old_pww = openfile->placewewant;
508
    bool didfind;
509

510
#ifndef DISABLE_WRAPPING
511
    wrap_reset();
512
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
513

514
515
516
517
    search_init_globals();

    if (last_search[0] != '\0') {
#ifdef HAVE_REGEX_H
518
	/* Since answer is "", use last_search! */
519
	if (ISSET(USE_REGEXP) && regexp_init(last_search) == 0)
520
	    return;
521
522
#endif

523
	findnextstr_wrap_reset();
524
525
526
527
528
529
	didfind = findnextstr(
#ifndef DISABLE_SPELLER
		FALSE,
#endif
		FALSE, openfile->current, openfile->current_x,
		last_search, NULL);
530

531
532
	/* Check to see if there's only one occurrence of the string and
	 * we're on it now. */
533
534
	if (fileptr == openfile->current && fileptr_x ==
		openfile->current_x && didfind) {
535
536
537
538
539
540
#ifdef HAVE_REGEX_H
	    /* Do the search again, skipping over the current line, if
	     * we're doing a bol and/or eol regex search ("^", "$", or
	     * "^$"), so that we find one only once per line.  We should
	     * only end up back at the same position if the string isn't
	     * found again, in which case it's the only occurrence. */
541
542
	    if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		last_search)) {
543
544
545
546
547
548
		didfind = findnextstr(
#ifndef DISABLE_SPELLER
			FALSE,
#endif
			TRUE, openfile->current, openfile->current_x,
			answer, NULL);
549
550
		if (fileptr == openfile->current && fileptr_x ==
			openfile->current_x && !didfind)
551
552
553
554
555
556
557
558
		    statusbar(_("This is the only occurrence"));
	    } else {
#endif
		statusbar(_("This is the only occurrence"));
#ifdef HAVE_REGEX_H
	    }
#endif
	}
559
560
561
    } else
        statusbar(_("No current search pattern"));

562
    openfile->placewewant = xplustabs();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
563
    edit_redraw(fileptr, old_pww);
564
    search_replace_abort();
565
}
566
#endif
567

568
#ifdef HAVE_REGEX_H
569
int replace_regexp(char *string, bool create)
570
{
571
572
    /* We have a split personality here.  If create is FALSE, just
     * calculate the size of the replacement line (necessary because of
573
     * subexpressions \1 to \9 in the replaced text). */
574

575
    const char *c = last_replace;
576
577
578
579
    size_t search_match_count = regmatches[0].rm_eo -
	regmatches[0].rm_so;
    size_t new_line_size = strlen(openfile->current->data) + 1 -
	search_match_count;
580

Chris Allegretta's avatar
Chris Allegretta committed
581
582
    /* Iterate through the replacement text to handle subexpression
     * replacement using \1, \2, \3, etc. */
583
    while (*c != '\0') {
584
585
	int num = (int)(*(c + 1) - '0');

586
587
	if (*c != '\\' || num < 1 || num > 9 || num >
		search_regexp.re_nsub) {
588
	    if (create)
589
590
		*string++ = *c;
	    c++;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
591
	    new_line_size++;
592
	} else {
593
	    size_t i = regmatches[num].rm_eo - regmatches[num].rm_so;
594

595
596
	    /* Skip over the replacement expression. */
	    c += 2;
597

598
	    /* But add the length of the subexpression to new_size. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
599
	    new_line_size += i;
600

601
	    /* And if create is TRUE, append the result of the
602
	     * subexpression match to the new line. */
603
	    if (create) {
604
605
		strncpy(string, openfile->current->data +
			openfile->current_x + regmatches[num].rm_so, i);
606
		string += i;
607
608
	    }
	}
609
610
    }

611
    if (create)
Chris Allegretta's avatar
Chris Allegretta committed
612
	*string = '\0';
613

614
    return new_line_size;
615
}
616
#endif
617

618
char *replace_line(const char *needle)
619
{
620
    char *copy;
621
    size_t new_line_size, search_match_count;
622

623
    /* Calculate the size of the new line. */
624
#ifdef HAVE_REGEX_H
625
    if (ISSET(USE_REGEXP)) {
626
	search_match_count = regmatches[0].rm_eo - regmatches[0].rm_so;
627
	new_line_size = replace_regexp(NULL, FALSE);
628
    } else {
629
#endif
630
	search_match_count = strlen(needle);
631
632
	new_line_size = strlen(openfile->current->data) -
		search_match_count + strlen(answer) + 1;
633
#ifdef HAVE_REGEX_H
634
    }
635
#endif
636

637
    /* Create the buffer. */
638
    copy = charalloc(new_line_size);
639

640
    /* The head of the original line. */
641
    strncpy(copy, openfile->current->data, openfile->current_x);
642

643
    /* The replacement text. */
644
#ifdef HAVE_REGEX_H
645
    if (ISSET(USE_REGEXP))
646
	replace_regexp(copy + openfile->current_x, TRUE);
647
    else
648
#endif
649
	strcpy(copy + openfile->current_x, answer);
650

651
    /* The tail of the original line. */
652
    assert(openfile->current_x + search_match_count <= strlen(openfile->current->data));
653

654
655
    strcat(copy, openfile->current->data + openfile->current_x +
	search_match_count);
656
657

    return copy;
Chris Allegretta's avatar
Chris Allegretta committed
658
659
}

660
/* Step through each replace word and prompt user before replacing.
661
662
663
 * Parameters real_current and real_current_x are needed in order to
 * allow the cursor position to be updated when a word before the cursor
 * is replaced by a shorter word.
664
665
 *
 * needle is the string to seek.  We replace it with answer.  Return -1
666
667
 * if needle isn't found, else the number of replacements performed.  If
 * canceled isn't NULL, set it to TRUE if we canceled. */
668
669
670
671
672
673
ssize_t do_replace_loop(
#ifndef DISABLE_SPELLER
	bool whole_word,
#endif
	bool *canceled, const filestruct *real_current, size_t
	*real_current_x, const char *needle)
Chris Allegretta's avatar
Chris Allegretta committed
674
{
675
676
    ssize_t numreplaced = -1;
    size_t match_len;
677
    bool replaceall = FALSE;
678
#ifdef HAVE_REGEX_H
679
    /* The starting-line match and bol/eol regex flags. */
680
    bool begin_line = FALSE, bol_or_eol = FALSE;
681
#endif
682
#ifndef NANO_TINY
683
684
    bool old_mark_set = openfile->mark_set;
    filestruct *edittop_save = openfile->edittop, *top, *bot;
685
686
    size_t top_x, bot_x;
    bool right_side_up = FALSE;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
687
	/* TRUE if (mark_begin, mark_begin_x) is the top of the mark,
688
	 * FALSE if (current, current_x) is. */
Chris Allegretta's avatar
Chris Allegretta committed
689

690
    if (old_mark_set) {
691
	/* If the mark is on, partition the filestruct so that it
692
693
	 * contains only the marked text, set edittop to the top of the
	 * partition, turn the mark off, and refresh the screen. */
694
	mark_order((const filestruct **)&top, &top_x,
695
	    (const filestruct **)&bot, &bot_x, &right_side_up);
696
	filepart = partition_filestruct(top, top_x, bot, bot_x);
697
698
	openfile->edittop = openfile->fileage;
	openfile->mark_set = FALSE;
699
700
	edit_refresh();
    }
701
#endif
702

703
704
705
    if (canceled != NULL)
	*canceled = FALSE;

706
    findnextstr_wrap_reset();
707
708
709
710
    while (findnextstr(
#ifndef DISABLE_SPELLER
	whole_word,
#endif
711
#ifdef HAVE_REGEX_H
712
713
714
715
716
	/* We should find a bol and/or eol regex only once per line.  If
	 * the bol_or_eol flag is set, it means that the last search
	 * found one on the beginning line, so we should skip over the
	 * beginning line when doing this search. */
	bol_or_eol
717
#else
718
	FALSE
719
#endif
720
	, real_current, *real_current_x, needle, &match_len)) {
721
	int i = 0;
722

723
724
725
726
727
#ifdef HAVE_REGEX_H
	/* If the bol_or_eol flag is set, we've found a match on the
	 * beginning line already, and we're still on the beginning line
	 * after the search, it means that we've wrapped around, so
	 * we're done. */
728
729
	if (bol_or_eol && begin_line && openfile->current ==
		real_current)
730
731
732
733
734
	    break;
	/* Otherwise, set the begin_line flag if we've found a match on
	 * the beginning line, reset the bol_or_eol flag, and
	 * continue. */
	else {
735
	    if (openfile->current == real_current)
736
737
738
739
740
		begin_line = TRUE;
	    bol_or_eol = FALSE;
	}
#endif

741
742
	if (!replaceall)
	    edit_refresh();
Chris Allegretta's avatar
Chris Allegretta committed
743

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
744
	/* Indicate that we found the search string. */
745
746
	if (numreplaced == -1)
	    numreplaced = 0;
747

748
	if (!replaceall) {
749
	    size_t xpt = xplustabs();
750
751
752
	    char *exp_word = display_string(openfile->current->data,
		xpt, strnlenpt(openfile->current->data,
		openfile->current_x + match_len) - xpt, FALSE);
753

754
	    curs_set(0);
755

756
	    do_replace_highlight(TRUE, exp_word);
757

758
	    i = do_yesno_prompt(TRUE, _("Replace this instance?"));
Chris Allegretta's avatar
Chris Allegretta committed
759

760
	    do_replace_highlight(FALSE, exp_word);
761

762
	    free(exp_word);
763

764
	    curs_set(1);
765

766
767
768
	    if (i == -1) {	/* We canceled the replace. */
		if (canceled != NULL)
		    *canceled = TRUE;
769
		break;
770
	    }
771
772
	}

773
#ifdef HAVE_REGEX_H
774
	/* Set the bol_or_eol flag if we're doing a bol and/or eol regex
775
	 * replace ("^", "$", or "^$"). */
776
777
	if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		needle))
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
778
	    bol_or_eol = TRUE;
779
780
#endif

781
	if (i > 0 || replaceall) {	/* Yes, replace it!!!! */
782
	    char *copy;
783
	    size_t length_change;
784

785
	    if (i == 2)
786
		replaceall = TRUE;
Chris Allegretta's avatar
Chris Allegretta committed
787

788
	    copy = replace_line(needle);
Chris Allegretta's avatar
Chris Allegretta committed
789

790
791
	    length_change = strlen(copy) -
		strlen(openfile->current->data);
Chris Allegretta's avatar
Chris Allegretta committed
792

793
#ifndef NANO_TINY
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
794
795
	    /* If the mark was on and (mark_begin, mark_begin_x) was the
	     * top of it, don't change mark_begin_x. */
796
	    if (!old_mark_set || !right_side_up) {
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
797
798
799
800
		/* Keep mark_begin_x in sync with the text changes. */
		if (openfile->current == openfile->mark_begin &&
			openfile->mark_begin_x > openfile->current_x) {
		    if (openfile->mark_begin_x < openfile->current_x +
801
			match_len)
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
802
			openfile->mark_begin_x = openfile->current_x;
803
		    else
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
804
			openfile->mark_begin_x += length_change;
805
		}
806
	    }
Chris Allegretta's avatar
Chris Allegretta committed
807

808
809
810
	    /* If the mark was on and (current, current_x) was the top
	     * of it, don't change real_current_x. */
	    if (!old_mark_set || right_side_up) {
811
#endif
812
		/* Keep real_current_x in sync with the text changes. */
813
814
815
816
817
818
		if (openfile->current == real_current &&
			openfile->current_x <= *real_current_x) {
		    if (*real_current_x <
			openfile->current_x + match_len)
			*real_current_x = openfile->current_x +
				match_len;
819
820
		    *real_current_x += length_change;
		}
821
#ifndef NANO_TINY
822
	    }
823
#endif
824

825
	    /* Set the cursor at the last character of the replacement
826
	     * text, so searching will resume after the replacement
827
828
	     * text.  Note that current_x might be set to (size_t)-1
	     * here. */
829
#ifndef NANO_TINY
830
	    if (!ISSET(BACKWARDS_SEARCH))
831
#endif
832
		openfile->current_x += match_len + length_change - 1;
833

834
	    /* Cleanup. */
835
836
837
	    openfile->totsize += length_change;
	    free(openfile->current->data);
	    openfile->current->data = copy;
838

839
840
	    if (!replaceall) {
#ifdef ENABLE_COLOR
841
842
843
844
		/* If color syntaxes are available and turned on, we
		 * need to call edit_refresh(). */
		if (openfile->colorstrings != NULL &&
			!ISSET(NO_COLOR_SYNTAX))
845
846
847
		    edit_refresh();
		else
#endif
848
		    update_line(openfile->current, openfile->current_x);
849
850
	    }

Chris Allegretta's avatar
Chris Allegretta committed
851
852
	    set_modified();
	    numreplaced++;
853
	}
Chris Allegretta's avatar
Chris Allegretta committed
854
855
    }

856
#ifndef NANO_TINY
857
    if (old_mark_set) {
858
859
860
	/* If the mark was on, unpartition the filestruct so that it
	 * contains all the text again, set edittop back to what it was
	 * before, turn the mark back on, and refresh the screen. */
861
	unpartition_filestruct(&filepart);
862
863
	openfile->edittop = edittop_save;
	openfile->mark_set = TRUE;
864
865
	edit_refresh();
    }
866
867
#endif

868
869
870
    /* If the NO_NEWLINES flag isn't set, and text has been added to the
     * magicline, make a new magicline. */
    if (!ISSET(NO_NEWLINES) && openfile->filebot->data[0] != '\0')
871
872
	new_magicline();

Chris Allegretta's avatar
Chris Allegretta committed
873
874
875
    return numreplaced;
}

Chris Allegretta's avatar
Chris Allegretta committed
876
/* Replace a string. */
877
void do_replace(void)
Chris Allegretta's avatar
Chris Allegretta committed
878
{
879
    filestruct *edittop_save, *begin;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
880
    size_t begin_x, pww_save;
881
    ssize_t numreplaced;
882
    int i;
Chris Allegretta's avatar
Chris Allegretta committed
883

Chris Allegretta's avatar
Chris Allegretta committed
884
885
    if (ISSET(VIEW_MODE)) {
	print_view_warning();
886
	search_replace_abort();
887
	return;
Chris Allegretta's avatar
Chris Allegretta committed
888
889
    }

890
    i = search_init(TRUE, FALSE);
891
892
    if (i == -1) {		/* Cancel, Go to Line, blank search
				 * string, or regcomp() failed. */
893
	search_replace_abort();
894
	return;
895
    } else if (i == -2) {	/* No Replace. */
Chris Allegretta's avatar
Chris Allegretta committed
896
	do_search();
897
	return;
898
899
900
901
902
    } else if (i == 1)		/* Case Sensitive, Backwards, or Regexp
				 * search toggle. */
	do_replace();

    if (i != 0)
903
	return;
Chris Allegretta's avatar
Chris Allegretta committed
904

905
906
907
    /* If answer is not "", add answer to the search history list and
     * copy answer into last_search. */
    if (answer[0] != '\0') {
908
#ifndef NANO_TINY
909
	update_history(&search_history, answer);
910
#endif
Chris Allegretta's avatar
Chris Allegretta committed
911
	last_search = mallocstrcpy(last_search, answer);
912
    }
Chris Allegretta's avatar
Chris Allegretta committed
913

914
915
    last_replace = mallocstrcpy(last_replace, "");

916
917
918
919
920
    i = do_prompt(FALSE,
#ifndef DISABLE_TABCOMP
	TRUE,
#endif
	replace_list_2, last_replace,
921
#ifndef NANO_TINY
922
	&replace_history,
923
#endif
924
	edit_refresh, _("Replace with"));
925

926
#ifndef NANO_TINY
927
928
929
    /* Add this replace string to the replace history list.  i == 0
     * means that the string is not "". */
    if (i == 0)
930
	update_history(&replace_history, answer);
931
932
933
934
935
936
#endif

    if (i != 0 && i != -2) {
	if (i == -1) {		/* Cancel. */
	    if (last_replace[0] != '\0')
		answer = mallocstrcpy(answer, last_replace);
937
	    statusbar(_("Cancelled"));
938
	}
939
	search_replace_abort();
940
	return;
941
942
943
    }

    last_replace = mallocstrcpy(last_replace, answer);
Chris Allegretta's avatar
Chris Allegretta committed
944

945
    /* Save where we are. */
946
947
    edittop_save = openfile->edittop;
    begin = openfile->current;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
948
    begin_x = openfile->current_x;
949
    pww_save = openfile->placewewant;
Chris Allegretta's avatar
Chris Allegretta committed
950

951
952
953
954
955
    numreplaced = do_replace_loop(
#ifndef DISABLE_SPELLER
	FALSE,
#endif
	NULL, begin, &begin_x, last_search);
Chris Allegretta's avatar
Chris Allegretta committed
956

957
    /* Restore where we were. */
958
959
    openfile->edittop = edittop_save;
    openfile->current = begin;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
960
    openfile->current_x = begin_x;
961
    openfile->placewewant = pww_save;
962

963
    edit_refresh();
Chris Allegretta's avatar
Chris Allegretta committed
964
965

    if (numreplaced >= 0)
966
967
968
	statusbar(P_("Replaced %lu occurrence",
		"Replaced %lu occurrences", (unsigned long)numreplaced),
		(unsigned long)numreplaced);
Chris Allegretta's avatar
Chris Allegretta committed
969

970
    search_replace_abort();
Chris Allegretta's avatar
Chris Allegretta committed
971
972
}

973
974
/* Go to the specified line and column, or ask for them if interactive
 * is TRUE.  Save the x-coordinate and y-coordinate if save_pos is TRUE.
975
976
 * Update the screen afterwards if allow_update is TRUE.  Note that both
 * the line and column numbers should be one-based. */
977
void do_gotolinecolumn(ssize_t line, ssize_t column, bool use_answer,
978
	bool interactive, bool save_pos, bool allow_update)
Chris Allegretta's avatar
Chris Allegretta committed
979
{
980
    if (interactive) {
981
	char *ans = mallocstrcpy(NULL, answer);
982
983

	/* Ask for it. */
984
985
986
987
988
	int i = do_prompt(FALSE,
#ifndef DISABLE_TABCOMP
		TRUE,
#endif
		gotoline_list, use_answer ? ans : "",
989
#ifndef NANO_TINY
990
		NULL,
Chris Allegretta's avatar
Chris Allegretta committed
991
#endif
992
		edit_refresh, _("Enter line number, column number"));
993
994

	free(ans);
Chris Allegretta's avatar
Chris Allegretta committed
995
996

	/* Cancel, or Enter with blank string. */
997
	if (i < 0) {
998
	    statusbar(_("Cancelled"));
999
	    display_main_list();
1000
1001
1002
	    return;
	}

1003
	if (i == NANO_TOOTHERWHEREIS_KEY) {
1004
1005
1006
	    /* Keep answer up on the statusbar. */
	    search_init(TRUE, TRUE);

1007
	    do_search();
1008
	    return;
Chris Allegretta's avatar
Chris Allegretta committed
1009
	}
1010

1011
	/* Do a bounds check.  Display a warning on an out-of-bounds
1012
1013
	 * line or column number only if we hit Enter at the statusbar
	 * prompt. */
1014
	if (!parse_line_column(answer, &line, &column) || line < 1 ||
1015
		column < 1) {
1016
1017
	    if (i == 0)
		statusbar(_("Come on, be reasonable"));
Chris Allegretta's avatar
Chris Allegretta committed
1018
	    display_main_list();
1019
	    return;
Chris Allegretta's avatar
Chris Allegretta committed
1020
	}
1021
1022
    } else {
	if (line < 1)
1023
	    line = openfile->current->lineno;
1024

1025
	if (column < 1)
1026
	    column = openfile->placewewant + 1;
Chris Allegretta's avatar
Chris Allegretta committed
1027
1028
    }

1029
    for (openfile->current = openfile->fileage;
1030
	openfile->current != openfile->filebot && line > 1; line--)
1031
	openfile->current = openfile->current->next;
Chris Allegretta's avatar
Chris Allegretta committed
1032

1033
1034
    openfile->current_x = actual_x(openfile->current->data, column - 1);
    openfile->placewewant = column - 1;
1035

1036
1037
1038
1039
1040
1041
    /* Put the top line of the edit window in range of the current line.
     * If save_pos is TRUE, don't change the cursor position when doing
     * it. */
    edit_update(save_pos ? NONE : CENTER);

    /* If allow_update is TRUE, update the screen. */
1042
    if (allow_update)
1043
	edit_refresh();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1044

Chris Allegretta's avatar
Chris Allegretta committed
1045
    display_main_list();
Chris Allegretta's avatar
Chris Allegretta committed
1046
1047
}

1048
/* Go to the specified line and column, asking for them beforehand. */
1049
void do_gotolinecolumn_void(void)
Chris Allegretta's avatar
Chris Allegretta committed
1050
{
1051
    do_gotolinecolumn(openfile->current->lineno,
1052
	openfile->placewewant + 1, FALSE, TRUE, FALSE, TRUE);
Chris Allegretta's avatar
Chris Allegretta committed
1053
}
1054

1055
#ifndef DISABLE_SPELLER
1056
1057
1058
1059
/* Go to the line with the number specified in pos_line, the
 * x-coordinate specified in pos_x, the y-coordinate specified in pos_y,
 * and the place we want specified in pos_pww. */
void do_gotopos(ssize_t pos_line, size_t pos_x, ssize_t pos_y, size_t
1060
	pos_pww)
1061
{
1062
    /* Since do_gotolinecolumn() resets the x-coordinate but not the
1063
     * y-coordinate, set the coordinates up this way. */
1064
    openfile->current_y = pos_y;
1065
    do_gotolinecolumn(pos_line, pos_x + 1, FALSE, FALSE, TRUE, TRUE);
1066

1067
    /* Set the rest of the coordinates up. */
1068
1069
    openfile->placewewant = pos_pww;
    update_line(openfile->current, pos_x);
1070
1071
}
#endif
1072

1073
#ifndef NANO_TINY
1074
/* Search for a match to one of the two characters in bracket_set.  If
1075
1076
1077
 * reverse is TRUE, search backwards for the leftmost bracket.
 * Otherwise, search forwards for the rightmost bracket.  Return TRUE if
 * we found a match, and FALSE otherwise. */
1078
1079
1080
1081
1082
1083
bool find_bracket_match(bool reverse, const char *bracket_set)
{
    filestruct *fileptr = openfile->current;
    const char *rev_start = NULL, *found = NULL;
    ssize_t current_y_find = openfile->current_y;

1084
    assert(mbstrlen(bracket_set) == 2);
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098

    /* rev_start might end up 1 character before the start or after the
     * end of the line.  This won't be a problem because we'll skip over
     * it below in that case, and rev_start will be properly set when
     * the search continues on the previous or next line. */
    rev_start = reverse ? fileptr->data + (openfile->current_x - 1) :
	fileptr->data + (openfile->current_x + 1);

    /* Look for either of the two characters in bracket_set.  rev_start
     * can be 1 character before the start or after the end of the line.
     * In either case, just act as though no match is found. */
    while (TRUE) {
	found = ((rev_start > fileptr->data && *(rev_start - 1) ==
		'\0') || rev_start < fileptr->data) ? NULL : (reverse ?
1099
1100
		mbrevstrpbrk(fileptr->data, bracket_set, rev_start) :
		mbstrpbrk(rev_start, bracket_set));
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113

	/* We've found a potential match. */
	if (found != NULL)
	    break;

	if (reverse) {
	    fileptr = fileptr->prev;
	    current_y_find--;
	} else {
	    fileptr = fileptr->next;
	    current_y_find++;
	}

1114
	/* We've reached the start or end of the buffer, so get out. */
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
	if (fileptr == NULL)
	    return FALSE;

	rev_start = fileptr->data;
	if (reverse)
	    rev_start += strlen(fileptr->data);
    }

    /* We've definitely found something. */
    openfile->current = fileptr;
1125
    openfile->current_x = found - fileptr->data;
1126
1127
1128
1129
1130
1131
1132
1133
    openfile->placewewant = xplustabs();
    openfile->current_y = current_y_find;

    return TRUE;
}

/* Search for a match to the bracket at the current cursor position, if
 * there is one. */
1134
void do_find_bracket(void)
1135
{
1136
    filestruct *current_save;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1137
    size_t current_x_save, pww_save;
1138
    const char *ch;
1139
	/* The location in matchbrackets of the bracket at the current
1140
	 * cursor position. */
1141
1142
1143
    int ch_len;
	/* The length of ch in bytes. */
    const char *wanted_ch;
1144
1145
	/* The location in matchbrackets of the bracket complementing
	 * the bracket at the current cursor position. */
1146
1147
1148
    int wanted_ch_len;
	/* The length of wanted_ch in bytes. */
    char *bracket_set;
1149
	/* The pair of characters in ch and wanted_ch. */
1150
1151
    size_t i;
	/* Generic loop variable. */
1152
    size_t matchhalf;
1153
1154
1155
1156
1157
	/* The number of single-byte characters in one half of
	 * matchbrackets. */
    size_t mbmatchhalf;
	/* The number of multibyte characters in one half of
	 * matchbrackets. */
1158
1159
1160
1161
    size_t count = 1;
	/* The initial bracket count. */
    bool reverse;
	/* The direction we search. */
1162
1163
    char *found_ch;
	/* The character we find. */
1164

1165
    assert(mbstrlen(matchbrackets) % 2 == 0);
1166

1167
    ch = openfile->current->data + openfile->current_x;
1168

1169
    if (ch == '\0' || (ch = mbstrchr(matchbrackets, ch)) == NULL) {
1170
	statusbar(_("Not a bracket"));
1171
	return;
1172
1173
    }

1174
    /* Save where we are. */
1175
1176
1177
    current_save = openfile->current;
    current_x_save = openfile->current_x;
    pww_save = openfile->placewewant;
1178

1179
    /* If we're on an opening bracket, which must be in the first half
1180
     * of matchbrackets, we want to search forwards for a closing
1181
     * bracket.  If we're on a closing bracket, which must be in the
1182
     * second half of matchbrackets, we want to search backwards for an
1183
     * opening bracket. */
1184
1185
1186
1187
1188
1189
1190
    matchhalf = 0;
    mbmatchhalf = mbstrlen(matchbrackets) / 2;

    for (i = 0; i < mbmatchhalf; i++)
	matchhalf += parse_mbchar(matchbrackets + matchhalf, NULL,
		NULL);

1191
    reverse = ((ch - matchbrackets) >= matchhalf);
1192
1193

    /* If we're on an opening bracket, set wanted_ch to the character
1194
1195
1196
     * that's matchhalf characters after ch.  If we're on a closing
     * bracket, set wanted_ch to the character that's matchhalf
     * characters before ch. */
1197
1198
    wanted_ch = ch;

1199
    while (mbmatchhalf > 0) {
1200
	if (reverse)
1201
1202
	    wanted_ch = matchbrackets + move_mbleft(matchbrackets,
		wanted_ch - matchbrackets);
1203
1204
1205
	else
	    wanted_ch += move_mbright(wanted_ch, 0);

1206
	mbmatchhalf--;
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
    }

    ch_len = parse_mbchar(ch, NULL, NULL);
    wanted_ch_len = parse_mbchar(wanted_ch, NULL, NULL);

    /* Fill bracket_set in with the values of ch and wanted_ch. */
    bracket_set = charalloc((mb_cur_max() * 2) + 1);
    strncpy(bracket_set, ch, ch_len);
    strncpy(bracket_set + ch_len, wanted_ch, wanted_ch_len);
    null_at(&bracket_set, ch_len + wanted_ch_len);

    found_ch = charalloc(mb_cur_max() + 1);
1219

1220
    while (TRUE) {
1221
	if (find_bracket_match(reverse, bracket_set)) {
1222
1223
	    /* If we found an identical bracket, increment count.  If we
	     * found a complementary bracket, decrement it. */
1224
1225
1226
	    parse_mbchar(openfile->current->data + openfile->current_x,
		found_ch, NULL);
	    count += (strncmp(found_ch, ch, ch_len) == 0) ? 1 : -1;
1227
1228
1229
1230

	    /* If count is zero, we've found a matching bracket.  Update
	     * the screen and get out. */
	    if (count == 0) {
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1231
		edit_redraw(current_save, pww_save);
1232
		break;
1233
	    }
Chris Allegretta's avatar
Chris Allegretta committed
1234
	} else {
1235
1236
	    /* We didn't find either an opening or closing bracket.
	     * Indicate this, restore where we were, and get out. */
1237
	    statusbar(_("No matching bracket"));
1238
1239
	    openfile->current = current_save;
	    openfile->current_x = current_x_save;
1240
	    openfile->placewewant = pww_save;
1241
1242
1243
	    break;
	}
    }
1244
1245
1246
1247

    /* Clean up. */
    free(bracket_set);
    free(found_ch);
1248
}
1249

1250
#ifdef ENABLE_NANORC
1251
1252
1253
1254
1255
/* Indicate whether any of the history lists have changed. */
bool history_has_changed(void)
{
    return history_changed;
}
1256
#endif
1257

1258
/* Initialize the search and replace history lists. */
1259
1260
void history_init(void)
{
1261
1262
1263
1264
1265
1266
1267
1268
1269
    search_history = make_new_node(NULL);
    search_history->data = mallocstrcpy(NULL, "");
    searchage = search_history;
    searchbot = search_history;

    replace_history = make_new_node(NULL);
    replace_history->data = mallocstrcpy(NULL, "");
    replaceage = replace_history;
    replacebot = replace_history;
1270
1271
}

1272
1273
1274
1275
1276
1277
1278
1279
1280
/* Set the current position in the history list h to the bottom. */
void history_reset(const filestruct *h)
{
    if (h == search_history)
	search_history = searchbot;
    else if (h == replace_history)
	replace_history = replacebot;
}

1281
1282
1283
/* Return the first node containing the first len characters of the
 * string s in the history list, starting at h_start and ending at
 * h_end, or NULL if there isn't one. */
1284
1285
filestruct *find_history(const filestruct *h_start, const filestruct
	*h_end, const char *s, size_t len)
1286
{
1287
    const filestruct *p;
1288

1289
1290
    for (p = h_start; p != h_end->next && p != NULL; p = p->next) {
	if (strncmp(s, p->data, len) == 0)
1291
	    return (filestruct *)p;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1292
    }
1293

1294
1295
1296
    return NULL;
}

1297
1298
1299
/* Update a history list.  h should be the current position in the
 * list. */
void update_history(filestruct **h, const char *s)
1300
{
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
    filestruct **hage = NULL, **hbot = NULL, *p;

    assert(h != NULL && s != NULL);

    if (*h == search_history) {
	hage = &searchage;
	hbot = &searchbot;
    } else if (*h == replace_history) {
	hage = &replaceage;
	hbot = &replacebot;
    }
1312

1313
    assert(hage != NULL && hbot != NULL);
1314

1315
    /* If this string is already in the history, delete it. */
1316
    p = find_history(*hage, *hbot, s, (size_t)-1);
1317

1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
    if (p != NULL) {
	filestruct *foo, *bar;

	/* If the string is at the beginning, move the beginning down to
	 * the next string. */
	if (p == *hage)
	    *hage = (*hage)->next;

	/* Delete the string. */
	foo = p;
	bar = p->next;
	unlink_node(foo);
	delete_node(foo);
1331
1332
	if (bar != NULL)
	    renumber(bar);
1333
1334
    }

1335
    /* If the history is full, delete the beginning entry to make room
1336
1337
     * for the new entry at the end.  We assume that MAX_SEARCH_HISTORY
     * is greater than zero. */
1338
1339
1340
1341
1342
1343
1344
    if ((*hbot)->lineno == MAX_SEARCH_HISTORY + 1) {
	filestruct *foo = *hage;

	*hage = (*hage)->next;
	unlink_node(foo);
	delete_node(foo);
	renumber(*hage);
1345
    }
1346
1347
1348
1349
1350
1351
1352

    /* Add the new entry to the end. */
    (*hbot)->data = mallocstrcpy(NULL, s);
    splice_node(*hbot, make_new_node(*hbot), (*hbot)->next);
    *hbot = (*hbot)->next;
    (*hbot)->data = mallocstrcpy(NULL, "");

1353
#ifdef ENABLE_NANORC
1354
1355
    /* Indicate that the history's been changed. */
    history_changed = TRUE;
1356
#endif
1357
1358
1359

    /* Set the current position in the list to the bottom. */
    *h = *hbot;
1360
1361
}

1362
1363
/* Move h to the string in the history list just before it, and return
 * that string.  If there isn't one, don't move h and return NULL. */
1364
char *get_history_older(filestruct **h)
1365
{
1366
    assert(h != NULL);
1367

1368
1369
1370
1371
1372
1373
    if ((*h)->prev == NULL)
	return NULL;

    *h = (*h)->prev;

    return (*h)->data;
1374
1375
}

1376
1377
/* Move h to the string in the history list just after it, and return
 * that string.  If there isn't one, don't move h and return NULL. */
1378
char *get_history_newer(filestruct **h)
1379
{
1380
    assert(h != NULL);
1381

1382
1383
    if ((*h)->next == NULL)
	return NULL;
1384

1385
1386
1387
1388
    *h = (*h)->next;

    return (*h)->data;
}
1389
1390
1391
1392

#ifndef DISABLE_TABCOMP
/* Move h to the next string that's a tab completion of the string s,
 * looking at only the first len characters of s, and return that
1393
1394
 * string.  If there isn't one, or if len is 0, don't move h and return
 * s. */
1395
char *get_history_completion(filestruct **h, const char *s, size_t len)
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
{
    assert(s != NULL);

    if (len > 0) {
	filestruct *hage = NULL, *hbot = NULL, *p;

	assert(h != NULL);

	if (*h == search_history) {
	    hage = searchage;
	    hbot = searchbot;
	} else if (*h == replace_history) {
	    hage = replaceage;
	    hbot = replacebot;
	}

	assert(hage != NULL && hbot != NULL);

1414
1415
1416
	/* Search the history list from the current position to the
	 * bottom for a match of len characters.  Skip over an exact
	 * match. */
1417
1418
	p = find_history((*h)->next, hbot, s, len);

1419
1420
1421
	while (p != NULL && strcmp(p->data, s) == 0)
	    p = find_history(p->next, hbot, s, len);

1422
1423
1424
1425
1426
1427
	if (p != NULL) {
	    *h = p;
	    return (*h)->data;
	}

	/* Search the history list from the top to the current position
1428
	 * for a match of len characters.  Skip over an exact match. */
1429
1430
	p = find_history(hage, *h, s, len);

1431
1432
1433
	while (p != NULL && strcmp(p->data, s) == 0)
	    p = find_history(p->next, *h, s, len);

1434
1435
1436
1437
1438
1439
	if (p != NULL) {
	    *h = p;
	    return (*h)->data;
	}
    }

1440
1441
    /* If we're here, we didn't find a match, we didn't find an inexact
     * match, or len is 0.  Return s. */
1442
    return (char *)s;
1443
}
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1444
#endif /* !DISABLE_TABCOMP */
1445
#endif /* !NANO_TINY */