search.c 40.1 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
6
 *   Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007   *
 *   Free Software Foundation, Inc.                                       *
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 3, 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
/* Compile the regular expression regexp to see if it's valid.  Return
 * TRUE if it is, or FALSE otherwise. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
44
bool regexp_init(const char *regexp)
45
{
46
47
48
49
50
    int rc;

    assert(!regexp_compiled);

    rc = regcomp(&search_regexp, regexp, REG_EXTENDED
51
#ifndef NANO_TINY
52
53
54
	| (ISSET(CASE_SENSITIVE) ? 0 : REG_ICASE)
#endif
	);
55
56
57
58
59
60
61
62

    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);
63
64

	return FALSE;
65
    }
66

67
    regexp_compiled = TRUE;
68
69

    return TRUE;
70
71
}

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

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

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
90
    assert(str != NULL);
91

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

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

    free(disp);
99
100
}

101
102
103
104
105
/* 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)
106
107
{
    display_main_list();
108
#ifndef NANO_TINY
109
    if (openfile->mark_set)
110
111
	edit_refresh();
#endif
112
#ifdef HAVE_REGEX_H
113
    regexp_cleanup();
114
115
116
#endif
}

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

126
/* Set up the system variables for a search or replace.  If use_answer
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
127
128
129
130
131
 * 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
132
 *
133
134
135
 * 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
136
{
137
    int i = 0;
138
    char *buf;
139
140
    sc *s;
    void *func = NULL;
141
    static char *backupstring = NULL;
142
143
144
145
146
147
148
149
150
151
152
	/* 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;
    }
153
154
155
156

    /* 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,
157
     * we should put the same search string back up. */
158

Chris Allegretta's avatar
Chris Allegretta committed
159
    search_init_globals();
160

161
    if (last_search[0] != '\0') {
162
	char *disp = display_string(last_search, 0, COLS / 3, FALSE);
163

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

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

206
207
    fflush(stderr);

208
    /* Release buf now that we don't need it anymore. */
Chris Allegretta's avatar
Chris Allegretta committed
209
210
    free(buf);

211
212
213
    free(backupstring);
    backupstring = NULL;

214
    /* Cancel any search, or just return with no previous search. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
215
216
    if (i == -1 || (i < 0 && *last_search == '\0') || (!replacing &&
	i == 0 && *answer == '\0')) {
217
	statusbar(_("Cancelled"));
Chris Allegretta's avatar
Chris Allegretta committed
218
	return -1;
Chris Allegretta's avatar
Chris Allegretta committed
219
    } else {
220
221
222
223
224
225
226
	for  (s = sclist; s != NULL; s = s->next)
	    if ((s->menu & currmenu) && i == s->seq) {
	        func = s->scfunc;
	  	break;
	    }

	if (i == -2 || i == 0 ) {
227
#ifdef HAVE_REGEX_H
228
229
		/* Use last_search if answer is an empty string, or
		 * answer if it isn't. */
230
231
		if (ISSET(USE_REGEXP) && !regexp_init((i == -2) ?
			last_search : answer))
232
		    return -1;
233
#endif
234
		;
235
#ifndef NANO_TINY
236
	} else if (func == (void *) case_sens_msg) {
237
238
239
		TOGGLE(CASE_SENSITIVE);
		backupstring = mallocstrcpy(backupstring, answer);
		return 1;
240
	} else if (func == (void *) backwards_msg) {
241
		TOGGLE(BACKWARDS_SEARCH);
242
243
		backupstring = mallocstrcpy(backupstring, answer);
		return 1;
244
#endif
245
#ifdef HAVE_REGEX_H
246
	} else if (func == (void *) regexp_msg) {
247
248
249
		TOGGLE(USE_REGEXP);
		backupstring = mallocstrcpy(backupstring, answer);
		return 1;
250
#endif
251
252
	} else if (func == (void *) do_replace || 
	  func == (void *) no_replace_msg) {
253
254
		backupstring = mallocstrcpy(backupstring, answer);
		return -2;	/* Call the opposite search function. */
255
	} else if (func == (void *) go_to_line_msg) {
256
		do_gotolinecolumn(openfile->current->lineno,
257
258
			openfile->placewewant + 1, TRUE, TRUE, FALSE,
			TRUE);
259
260
				/* Put answer up on the statusbar and
				 * fall through. */
261
	} else {
262
		return -1;
Chris Allegretta's avatar
Chris Allegretta committed
263
	}
Chris Allegretta's avatar
Chris Allegretta committed
264
    }
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
265

Chris Allegretta's avatar
Chris Allegretta committed
266
267
268
    return 0;
}

269
270
/* Look for needle, starting at (current, current_x).  If no_sameline is
 * TRUE, skip over begin when looking for needle.  begin is the line
271
272
273
 * 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. */
274
275
276
277
278
279
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
280
{
281
    size_t found_len;
282
	/* The length of the match we find. */
283
    size_t current_x_find = 0;
284
	/* The location in the current line of the match we find. */
285
    ssize_t current_y_find = openfile->current_y;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
286
287
    filestruct *fileptr = openfile->current;
    const char *rev_start = fileptr->data, *found = NULL;
288
289
290
291
292
293

    /* 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
294
    rev_start +=
295
#ifndef NANO_TINY
296
	ISSET(BACKWARDS_SEARCH) ?
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
297
	openfile->current_x - 1 :
298
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
299
	openfile->current_x + 1;
Chris Allegretta's avatar
Chris Allegretta committed
300

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

305
306
	/* We've found a potential match. */
	if (found != NULL) {
307
#ifndef DISABLE_SPELLER
308
309
	    bool found_whole = FALSE;
		/* Is this potential match a whole word? */
310
#endif
311
312

	    /* Set found_len to the length of the potential match. */
313
	    found_len =
314
#ifdef HAVE_REGEX_H
315
316
		ISSET(USE_REGEXP) ?
		regmatches[0].rm_eo - regmatches[0].rm_so :
317
#endif
318
		strlen(needle);
319

320
#ifndef DISABLE_SPELLER
321
322
	    /* If we're searching for whole words, see if this potential
	     * match is a whole word. */
323
	    if (whole_word) {
324
		char *word = mallocstrncpy(NULL, found, found_len + 1);
325
326
327
328
329
330
		word[found_len] = '\0';

		found_whole = is_whole_word(found - fileptr->data,
			fileptr->data, word);
		free(word);
	    }
331
#endif
332
333
334
335
336

	    /* 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. */
337
338
339
340
341
	    if (
#ifndef DISABLE_SPELLER
		(!whole_word || found_whole) &&
#endif
		(!no_sameline || fileptr != openfile->current))
342
		break;
Chris Allegretta's avatar
Chris Allegretta committed
343
	}
344

345
	/* We've finished processing the file, so get out. */
346
	if (search_last_line) {
347
	    not_found_msg(needle);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
348
	    return FALSE;
349
	}
350

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
351
	/* Move to the previous or next line in the file. */
352
#ifndef NANO_TINY
353
	if (ISSET(BACKWARDS_SEARCH)) {
354
355
356
357
358
359
	    fileptr = fileptr->prev;
	    current_y_find--;
	} else {
#endif
	    fileptr = fileptr->next;
	    current_y_find++;
360
#ifndef NANO_TINY
361
	}
362
#endif
363

364
365
	/* We've reached the start or end of the buffer, so wrap
	 * around. */
366
	if (fileptr == NULL) {
367
#ifndef NANO_TINY
368
	    if (ISSET(BACKWARDS_SEARCH)) {
369
		fileptr = openfile->filebot;
370
371
		current_y_find = editwinrows - 1;
	    } else {
372
#endif
373
		fileptr = openfile->fileage;
374
		current_y_find = 0;
375
#ifndef NANO_TINY
376
377
	    }
#endif
378
	    statusbar(_("Search Wrapped"));
379
	}
Chris Allegretta's avatar
Chris Allegretta committed
380

381
	/* We've reached the original starting line. */
382
	if (fileptr == begin)
383
	    search_last_line = TRUE;
384

385
	rev_start = fileptr->data;
386
#ifndef NANO_TINY
387
	if (ISSET(BACKWARDS_SEARCH))
388
389
390
	    rev_start += strlen(fileptr->data);
#endif
    }
391

392
393
    /* We found an instance. */
    current_x_find = found - fileptr->data;
Chris Allegretta's avatar
Chris Allegretta committed
394

395
396
    /* Ensure we haven't wrapped around again! */
    if (search_last_line &&
397
#ifndef NANO_TINY
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
398
399
	((!ISSET(BACKWARDS_SEARCH) && current_x_find > begin_x) ||
	(ISSET(BACKWARDS_SEARCH) && current_x_find < begin_x))
400
#else
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
401
	current_x_find > begin_x
402
403
#endif
	) {
404
	not_found_msg(needle);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
405
	return FALSE;
Chris Allegretta's avatar
Chris Allegretta committed
406
407
    }

408
409
410
411
    /* 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
412
    openfile->current_y = current_y_find;
413
414

    /* needle_len holds the length of needle. */
415
416
    if (needle_len != NULL)
	*needle_len = found_len;
417

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
418
    return TRUE;
Chris Allegretta's avatar
Chris Allegretta committed
419
420
}

421
422
/* Clear the flag indicating that a search reached the last line of the
 * file.  We need to do this just before a new search. */
423
424
425
426
427
void findnextstr_wrap_reset(void)
{
    search_last_line = FALSE;
}

Chris Allegretta's avatar
Chris Allegretta committed
428
/* Search for a string. */
429
void do_search(void)
Chris Allegretta's avatar
Chris Allegretta committed
430
{
431
    filestruct *fileptr = openfile->current;
432
    size_t fileptr_x = openfile->current_x;
433
    size_t pww_save = openfile->placewewant;
434
435
    int i;
    bool didfind;
Chris Allegretta's avatar
Chris Allegretta committed
436

437
    i = search_init(FALSE, FALSE);
438
439
440
441

    if (i == -1)
	/* Cancel, Go to Line, blank search string, or regcomp()
	 * failed. */
442
	search_replace_abort();
443
444
    else if (i == -2)
	/* Replace. */
Chris Allegretta's avatar
Chris Allegretta committed
445
	do_replace();
446
#if !defined(NANO_TINY) || defined(HAVE_REGEX_H)
447
448
    else if (i == 1)
	/* Case Sensitive, Backwards, or Regexp search toggle. */
Chris Allegretta's avatar
Chris Allegretta committed
449
	do_search();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
450
#endif
451

452
    if (i != 0)
453
	return;
454
455

    /* If answer is now "", copy last_search into answer. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
456
    if (*answer == '\0')
457
458
459
460
	answer = mallocstrcpy(answer, last_search);
    else
	last_search = mallocstrcpy(last_search, answer);

461
#ifndef NANO_TINY
462
463
    /* If answer is not "", add this search string to the search history
     * list. */
Chris Allegretta's avatar
Chris Allegretta committed
464
    if (answer[0] != '\0')
465
	update_history(&search_history, answer);
466
#endif
467

468
    findnextstr_wrap_reset();
469
470
471
472
473
    didfind = findnextstr(
#ifndef DISABLE_SPELLER
	FALSE,
#endif
	FALSE, openfile->current, openfile->current_x, answer, NULL);
474

475
476
    /* Check to see if there's only one occurrence of the string and
     * we're on it now. */
477
478
    if (fileptr == openfile->current && fileptr_x ==
	openfile->current_x && didfind) {
479
480
481
482
483
484
#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. */
485
486
	if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		last_search)) {
487
488
489
490
491
	    didfind = findnextstr(
#ifndef DISABLE_SPELLER
		FALSE,
#endif
		TRUE, openfile->current,
492
493
494
		openfile->current_x, answer, NULL);
	    if (fileptr == openfile->current && fileptr_x ==
		openfile->current_x && !didfind)
495
496
497
498
499
500
501
502
		statusbar(_("This is the only occurrence"));
	} else {
#endif
	    statusbar(_("This is the only occurrence"));
#ifdef HAVE_REGEX_H
	}
#endif
    }
503

504
    openfile->placewewant = xplustabs();
505
    edit_redraw(fileptr, pww_save);
506
    search_replace_abort();
Chris Allegretta's avatar
Chris Allegretta committed
507
508
}

509
#ifndef NANO_TINY
510
/* Search for the last string without prompting. */
511
void do_research(void)
512
{
513
    filestruct *fileptr = openfile->current;
514
    size_t fileptr_x = openfile->current_x;
515
    size_t pww_save = openfile->placewewant;
516
    bool didfind;
517
518
519
520
521

    search_init_globals();

    if (last_search[0] != '\0') {
#ifdef HAVE_REGEX_H
522
	/* Since answer is "", use last_search! */
523
	if (ISSET(USE_REGEXP) && !regexp_init(last_search))
524
	    return;
525
526
#endif

527
	findnextstr_wrap_reset();
528
529
530
531
532
533
	didfind = findnextstr(
#ifndef DISABLE_SPELLER
		FALSE,
#endif
		FALSE, openfile->current, openfile->current_x,
		last_search, NULL);
534

535
536
	/* Check to see if there's only one occurrence of the string and
	 * we're on it now. */
537
538
	if (fileptr == openfile->current && fileptr_x ==
		openfile->current_x && didfind) {
539
540
541
542
543
544
#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. */
545
546
	    if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		last_search)) {
547
548
549
550
551
552
		didfind = findnextstr(
#ifndef DISABLE_SPELLER
			FALSE,
#endif
			TRUE, openfile->current, openfile->current_x,
			answer, NULL);
553
554
		if (fileptr == openfile->current && fileptr_x ==
			openfile->current_x && !didfind)
555
556
557
558
559
560
561
562
		    statusbar(_("This is the only occurrence"));
	    } else {
#endif
		statusbar(_("This is the only occurrence"));
#ifdef HAVE_REGEX_H
	    }
#endif
	}
563
564
565
    } else
        statusbar(_("No current search pattern"));

566
    openfile->placewewant = xplustabs();
567
    edit_redraw(fileptr, pww_save);
568
    search_replace_abort();
569
}
570
#endif
571

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

579
    const char *c = last_replace;
580
581
582
583
    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;
584

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

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

599
600
	    /* Skip over the replacement expression. */
	    c += 2;
601

602
	    /* But add the length of the subexpression to new_size. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
603
	    new_line_size += i;
604

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

615
    if (create)
Chris Allegretta's avatar
Chris Allegretta committed
616
	*string = '\0';
617

618
    return new_line_size;
619
}
620
#endif
621

622
char *replace_line(const char *needle)
623
{
624
    char *copy;
625
    size_t new_line_size, search_match_count;
626

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

641
    /* Create the buffer. */
642
    copy = charalloc(new_line_size);
643

644
    /* The head of the original line. */
645
    strncpy(copy, openfile->current->data, openfile->current_x);
646

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

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

658
659
    strcat(copy, openfile->current->data + openfile->current_x +
	search_match_count);
660
661

    return copy;
Chris Allegretta's avatar
Chris Allegretta committed
662
663
}

664
/* Step through each replace word and prompt user before replacing.
665
666
667
 * 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.
668
669
 *
 * needle is the string to seek.  We replace it with answer.  Return -1
670
671
 * if needle isn't found, else the number of replacements performed.  If
 * canceled isn't NULL, set it to TRUE if we canceled. */
672
673
674
675
676
677
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
678
{
679
680
    ssize_t numreplaced = -1;
    size_t match_len;
681
    bool replaceall = FALSE;
682
#ifdef HAVE_REGEX_H
683
    /* The starting-line match and bol/eol regex flags. */
684
    bool begin_line = FALSE, bol_or_eol = FALSE;
685
#endif
686
#ifndef NANO_TINY
687
688
    bool old_mark_set = openfile->mark_set;
    filestruct *edittop_save = openfile->edittop, *top, *bot;
689
690
    size_t top_x, bot_x;
    bool right_side_up = FALSE;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
691
	/* TRUE if (mark_begin, mark_begin_x) is the top of the mark,
692
	 * FALSE if (current, current_x) is. */
Chris Allegretta's avatar
Chris Allegretta committed
693

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

707
708
709
    if (canceled != NULL)
	*canceled = FALSE;

710
    findnextstr_wrap_reset();
711
712
713
714
    while (findnextstr(
#ifndef DISABLE_SPELLER
	whole_word,
#endif
715
#ifdef HAVE_REGEX_H
716
717
718
719
720
	/* 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
721
#else
722
	FALSE
723
#endif
724
	, real_current, *real_current_x, needle, &match_len)) {
725
	int i = 0;
726

727
728
729
730
731
#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. */
732
733
	if (bol_or_eol && begin_line && openfile->current ==
		real_current)
734
735
736
737
738
	    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 {
739
	    if (openfile->current == real_current)
740
741
742
743
744
		begin_line = TRUE;
	    bol_or_eol = FALSE;
	}
#endif

745
746
	if (!replaceall)
	    edit_refresh();
Chris Allegretta's avatar
Chris Allegretta committed
747

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
748
	/* Indicate that we found the search string. */
749
750
	if (numreplaced == -1)
	    numreplaced = 0;
751

752
	if (!replaceall) {
753
	    size_t xpt = xplustabs();
754
755
756
	    char *exp_word = display_string(openfile->current->data,
		xpt, strnlenpt(openfile->current->data,
		openfile->current_x + match_len) - xpt, FALSE);
757

758
	    curs_set(0);
759

760
	    do_replace_highlight(TRUE, exp_word);
761

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

764
	    do_replace_highlight(FALSE, exp_word);
765

766
	    free(exp_word);
767

768
	    curs_set(1);
769

770
771
772
	    if (i == -1) {	/* We canceled the replace. */
		if (canceled != NULL)
		    *canceled = TRUE;
773
		break;
774
	    }
775
776
	}

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

785
	if (i > 0 || replaceall) {	/* Yes, replace it!!!! */
786
	    char *copy;
787
	    size_t length_change;
788

789
	    if (i == 2)
790
		replaceall = TRUE;
Chris Allegretta's avatar
Chris Allegretta committed
791

792
	    copy = replace_line(needle);
Chris Allegretta's avatar
Chris Allegretta committed
793

794
795
	    length_change = strlen(copy) -
		strlen(openfile->current->data);
Chris Allegretta's avatar
Chris Allegretta committed
796

797
#ifndef NANO_TINY
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
798
799
	    /* If the mark was on and (mark_begin, mark_begin_x) was the
	     * top of it, don't change mark_begin_x. */
800
	    if (!old_mark_set || !right_side_up) {
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
801
802
803
804
		/* 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 +
805
			match_len)
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
806
			openfile->mark_begin_x = openfile->current_x;
807
		    else
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
808
			openfile->mark_begin_x += length_change;
809
		}
810
	    }
Chris Allegretta's avatar
Chris Allegretta committed
811

812
813
814
	    /* 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) {
815
#endif
816
		/* Keep real_current_x in sync with the text changes. */
817
818
819
820
821
822
		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;
823
824
		    *real_current_x += length_change;
		}
825
#ifndef NANO_TINY
826
	    }
827
#endif
828

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

838
	    /* Cleanup. */
839
840
	    openfile->totsize += mbstrlen(copy) -
		mbstrlen(openfile->current->data);
841
842
	    free(openfile->current->data);
	    openfile->current->data = copy;
843

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

Chris Allegretta's avatar
Chris Allegretta committed
856
857
	    set_modified();
	    numreplaced++;
858
	}
Chris Allegretta's avatar
Chris Allegretta committed
859
860
    }

861
#ifndef NANO_TINY
862
    if (old_mark_set) {
863
864
865
	/* 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. */
866
	unpartition_filestruct(&filepart);
867
868
	openfile->edittop = edittop_save;
	openfile->mark_set = TRUE;
869
870
	edit_refresh();
    }
871
872
#endif

873
874
875
    /* 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')
876
877
	new_magicline();

Chris Allegretta's avatar
Chris Allegretta committed
878
879
880
    return numreplaced;
}

Chris Allegretta's avatar
Chris Allegretta committed
881
/* Replace a string. */
882
void do_replace(void)
Chris Allegretta's avatar
Chris Allegretta committed
883
{
884
    filestruct *edittop_save, *begin;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
885
    size_t begin_x, pww_save;
886
    ssize_t numreplaced;
887
    int i;
Chris Allegretta's avatar
Chris Allegretta committed
888

Chris Allegretta's avatar
Chris Allegretta committed
889
890
    if (ISSET(VIEW_MODE)) {
	print_view_warning();
891
	search_replace_abort();
892
	return;
Chris Allegretta's avatar
Chris Allegretta committed
893
894
    }

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

    if (i != 0)
910
	return;
Chris Allegretta's avatar
Chris Allegretta committed
911

912
913
914
    /* If answer is not "", add answer to the search history list and
     * copy answer into last_search. */
    if (answer[0] != '\0') {
915
#ifndef NANO_TINY
916
	update_history(&search_history, answer);
917
#endif
Chris Allegretta's avatar
Chris Allegretta committed
918
	last_search = mallocstrcpy(last_search, answer);
919
    }
Chris Allegretta's avatar
Chris Allegretta committed
920

921
922
    last_replace = mallocstrcpy(last_replace, "");

923
924
925
926
    i = do_prompt(FALSE,
#ifndef DISABLE_TABCOMP
	TRUE,
#endif
927
	MREPLACE2, last_replace,
928
#ifndef NANO_TINY
929
	&replace_history,
930
#endif
931
	edit_refresh, _("Replace with"));
932

933
#ifndef NANO_TINY
934
935
936
    /* Add this replace string to the replace history list.  i == 0
     * means that the string is not "". */
    if (i == 0)
937
	update_history(&replace_history, answer);
938
939
940
941
942
943
#endif

    if (i != 0 && i != -2) {
	if (i == -1) {		/* Cancel. */
	    if (last_replace[0] != '\0')
		answer = mallocstrcpy(answer, last_replace);
944
	    statusbar(_("Cancelled"));
945
	}
946
	search_replace_abort();
947
	return;
948
949
950
    }

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

952
    /* Save where we are. */
953
954
    edittop_save = openfile->edittop;
    begin = openfile->current;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
955
    begin_x = openfile->current_x;
956
    pww_save = openfile->placewewant;
Chris Allegretta's avatar
Chris Allegretta committed
957

958
959
960
961
962
    numreplaced = do_replace_loop(
#ifndef DISABLE_SPELLER
	FALSE,
#endif
	NULL, begin, &begin_x, last_search);
Chris Allegretta's avatar
Chris Allegretta committed
963

964
    /* Restore where we were. */
965
966
    openfile->edittop = edittop_save;
    openfile->current = begin;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
967
    openfile->current_x = begin_x;
968
    openfile->placewewant = pww_save;
969

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

    if (numreplaced >= 0)
973
974
975
	statusbar(P_("Replaced %lu occurrence",
		"Replaced %lu occurrences", (unsigned long)numreplaced),
		(unsigned long)numreplaced);
Chris Allegretta's avatar
Chris Allegretta committed
976

977
    search_replace_abort();
Chris Allegretta's avatar
Chris Allegretta committed
978
979
}

980
981
/* 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.
982
983
 * Update the screen afterwards if allow_update is TRUE.  Note that both
 * the line and column numbers should be one-based. */
984
void do_gotolinecolumn(ssize_t line, ssize_t column, bool use_answer,
985
	bool interactive, bool save_pos, bool allow_update)
Chris Allegretta's avatar
Chris Allegretta committed
986
{
987
988
989
    bool meta_key, func_key;
    const sc *s;

990
    if (interactive) {
991
	char *ans = mallocstrcpy(NULL, answer);
992

993
	/* Ask for the line and column. */
994
995
996
997
	int i = do_prompt(FALSE,
#ifndef DISABLE_TABCOMP
		TRUE,
#endif
998
		MGOTOLINE, use_answer ? ans : "",
999
#ifndef NANO_TINY
1000
		NULL,
Chris Allegretta's avatar
Chris Allegretta committed
1001
#endif
1002
		edit_refresh, _("Enter line number, column number"));
1003
1004

	free(ans);
Chris Allegretta's avatar
Chris Allegretta committed
1005
1006

	/* Cancel, or Enter with blank string. */
1007
	if (i < 0) {
1008
	    statusbar(_("Cancelled"));
1009
	    display_main_list();
1010
1011
1012
	    return;
	}

1013
1014
1015

	s = get_shortcut(currmenu, &i, &meta_key, &func_key);
	if (s && s->scfunc == do_search) {
1016
1017
1018
	    /* Keep answer up on the statusbar. */
	    search_init(TRUE, TRUE);

1019
	    do_search();
1020
	    return;
Chris Allegretta's avatar
Chris Allegretta committed
1021
	}
1022

1023
	/* Do a bounds check.  Display a warning on an out-of-bounds
1024
1025
	 * line or column number only if we hit Enter at the statusbar
	 * prompt. */
1026
	if (!parse_line_column(answer, &line, &column) || line < 1 ||
1027
		column < 1) {
1028
	    if (i == 0)
1029
		statusbar(_("Invalid line or column number"));
Chris Allegretta's avatar
Chris Allegretta committed
1030
	    display_main_list();
1031
	    return;
Chris Allegretta's avatar
Chris Allegretta committed
1032
	}
1033
1034
    } else {
	if (line < 1)
1035
	    line = openfile->current->lineno;
1036

1037
	if (column < 1)
1038
	    column = openfile->placewewant + 1;
Chris Allegretta's avatar
Chris Allegretta committed
1039
1040
    }

1041
    for (openfile->current = openfile->fileage;
1042
	openfile->current != openfile->filebot && line > 1; line--)
1043
	openfile->current = openfile->current->next;
Chris Allegretta's avatar
Chris Allegretta committed
1044

1045
1046
    openfile->current_x = actual_x(openfile->current->data, column - 1);
    openfile->placewewant = column - 1;
1047

1048
1049
1050
1051
1052
1053
    /* 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. */
1054
    if (allow_update)
1055
	edit_refresh();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1056

Chris Allegretta's avatar
Chris Allegretta committed
1057
    display_main_list();
Chris Allegretta's avatar
Chris Allegretta committed
1058
1059
}

1060
/* Go to the specified line and column, asking for them beforehand. */
1061
void do_gotolinecolumn_void(void)
Chris Allegretta's avatar
Chris Allegretta committed
1062
{
1063
    do_gotolinecolumn(openfile->current->lineno,
1064
	openfile->placewewant + 1, FALSE, TRUE, FALSE, TRUE);
Chris Allegretta's avatar
Chris Allegretta committed
1065
}
1066

1067
#ifndef DISABLE_SPELLER
1068
1069
1070
1071
/* 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
1072
	pos_pww)
1073
{
1074
    /* Since do_gotolinecolumn() resets the x-coordinate but not the
1075
     * y-coordinate, set the coordinates up this way. */
1076
    openfile->current_y = pos_y;
1077
    do_gotolinecolumn(pos_line, pos_x + 1, FALSE, FALSE, TRUE, TRUE);
1078

1079
    /* Set the rest of the coordinates up. */
1080
1081
    openfile->placewewant = pos_pww;
    update_line(openfile->current, pos_x);
1082
1083
}
#endif
1084

1085
#ifndef NANO_TINY
1086
/* Search for a match to one of the two characters in bracket_set.  If
1087
1088
1089
 * 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. */
1090
1091
1092
1093
1094
1095
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;

1096
    assert(mbstrlen(bracket_set) == 2);
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110

    /* 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 ?
1111
1112
		mbrevstrpbrk(fileptr->data, bracket_set, rev_start) :
		mbstrpbrk(rev_start, bracket_set));
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125

	/* 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++;
	}

1126
	/* We've reached the start or end of the buffer, so get out. */
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
	if (fileptr == NULL)
	    return FALSE;

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

    /* We've definitely found something. */
    openfile->current = fileptr;
1137
    openfile->current_x = found - fileptr->data;
1138
1139
1140
1141
1142
1143
1144
1145
    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. */
1146
void do_find_bracket(void)
1147
{
1148
    filestruct *current_save;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1149
    size_t current_x_save, pww_save;
1150
    const char *ch;
1151
	/* The location in matchbrackets of the bracket at the current
1152
	 * cursor position. */
1153
1154
1155
    int ch_len;
	/* The length of ch in bytes. */
    const char *wanted_ch;
1156
1157
	/* The location in matchbrackets of the bracket complementing
	 * the bracket at the current cursor position. */
1158
1159
1160
    int wanted_ch_len;
	/* The length of wanted_ch in bytes. */
    char *bracket_set;
1161
	/* The pair of characters in ch and wanted_ch. */
1162
1163
    size_t i;
	/* Generic loop variable. */
1164
    size_t matchhalf;
1165
1166
1167
1168
1169
	/* The number of single-byte characters in one half of
	 * matchbrackets. */
    size_t mbmatchhalf;
	/* The number of multibyte characters in one half of
	 * matchbrackets. */
1170
1171
1172
1173
    size_t count = 1;
	/* The initial bracket count. */
    bool reverse;
	/* The direction we search. */
1174
1175
    char *found_ch;
	/* The character we find. */
1176

1177
    assert(mbstrlen(matchbrackets) % 2 == 0);
1178

1179
    ch = openfile->current->data + openfile->current_x;
1180

1181
    if (ch == '\0' || (ch = mbstrchr(matchbrackets, ch)) == NULL) {
1182
	statusbar(_("Not a bracket"));
1183
	return;
1184
1185
    }

1186
    /* Save where we are. */
1187
1188
1189
    current_save = openfile->current;
    current_x_save = openfile->current_x;
    pww_save = openfile->placewewant;
1190

1191
    /* If we're on an opening bracket, which must be in the first half
1192
     * of matchbrackets, we want to search forwards for a closing
1193
     * bracket.  If we're on a closing bracket, which must be in the
1194
     * second half of matchbrackets, we want to search backwards for an
1195
     * opening bracket. */
1196
1197
1198
1199
1200
1201
1202
    matchhalf = 0;
    mbmatchhalf = mbstrlen(matchbrackets) / 2;

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

1203
    reverse = ((ch - matchbrackets) >= matchhalf);
1204
1205

    /* If we're on an opening bracket, set wanted_ch to the character
1206
1207
1208
     * 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. */
1209
1210
    wanted_ch = ch;

1211
    while (mbmatchhalf > 0) {
1212
	if (reverse)
1213
1214
	    wanted_ch = matchbrackets + move_mbleft(matchbrackets,
		wanted_ch - matchbrackets);
1215
1216
1217
	else
	    wanted_ch += move_mbright(wanted_ch, 0);

1218
	mbmatchhalf--;
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
    }

    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);
1231

1232
    while (TRUE) {
1233
	if (find_bracket_match(reverse, bracket_set)) {
1234
1235
	    /* If we found an identical bracket, increment count.  If we
	     * found a complementary bracket, decrement it. */
1236
1237
1238
	    parse_mbchar(openfile->current->data + openfile->current_x,
		found_ch, NULL);
	    count += (strncmp(found_ch, ch, ch_len) == 0) ? 1 : -1;
1239
1240
1241
1242

	    /* 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
1243
		edit_redraw(current_save, pww_save);
1244
		break;
1245
	    }
Chris Allegretta's avatar
Chris Allegretta committed
1246
	} else {
1247
1248
	    /* We didn't find either an opening or closing bracket.
	     * Indicate this, restore where we were, and get out. */
1249
	    statusbar(_("No matching bracket"));
1250
1251
	    openfile->current = current_save;
	    openfile->current_x = current_x_save;
1252
	    openfile->placewewant = pww_save;
1253
1254
1255
	    break;
	}
    }
1256
1257
1258
1259

    /* Clean up. */
    free(bracket_set);
    free(found_ch);
1260
}
1261

1262
#ifdef ENABLE_NANORC
1263
1264
1265
1266
1267
/* Indicate whether any of the history lists have changed. */
bool history_has_changed(void)
{
    return history_changed;
}
1268
#endif
1269

1270
/* Initialize the search and replace history lists. */
1271
1272
void history_init(void)
{
1273
1274
1275
1276
1277
1278
1279
1280
1281
    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;
1282
1283
}

1284
1285
1286
1287
1288
1289
1290
1291
1292
/* 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;
}

1293
1294
1295
/* 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. */
1296
1297
filestruct *find_history(const filestruct *h_start, const filestruct
	*h_end, const char *s, size_t len)
1298
{
1299
    const filestruct *p;
1300

1301
1302
    for (p = h_start; p != h_end->next && p != NULL; p = p->next) {
	if (strncmp(s, p->data, len) == 0)
1303
	    return (filestruct *)p;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1304
    }
1305

1306
1307
1308
    return NULL;
}

1309
1310
1311
/* Update a history list.  h should be the current position in the
 * list. */
void update_history(filestruct **h, const char *s)
1312
{
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
    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;
    }
1324

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

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

1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
    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);
1343
1344
	if (bar != NULL)
	    renumber(bar);
1345
1346
    }

1347
    /* If the history is full, delete the beginning entry to make room
1348
1349
     * for the new entry at the end.  We assume that MAX_SEARCH_HISTORY
     * is greater than zero. */
1350
1351
1352
1353
1354
1355
1356
    if ((*hbot)->lineno == MAX_SEARCH_HISTORY + 1) {
	filestruct *foo = *hage;

	*hage = (*hage)->next;
	unlink_node(foo);
	delete_node(foo);
	renumber(*hage);
1357
    }
1358
1359

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

1365
#ifdef ENABLE_NANORC
1366
1367
    /* Indicate that the history's been changed. */
    history_changed = TRUE;
1368
#endif
1369
1370
1371

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

1374
1375
/* 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. */
1376
char *get_history_older(filestruct **h)
1377
{
1378
    assert(h != NULL);
1379

1380
1381
1382
1383
1384
1385
    if ((*h)->prev == NULL)
	return NULL;

    *h = (*h)->prev;

    return (*h)->data;
1386
1387
}

1388
1389
/* 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. */
1390
char *get_history_newer(filestruct **h)
1391
{
1392
    assert(h != NULL);
1393

1394
1395
    if ((*h)->next == NULL)
	return NULL;
1396

1397
1398
1399
1400
    *h = (*h)->next;

    return (*h)->data;
}
1401
1402
1403
1404

#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
1405
1406
 * string.  If there isn't one, or if len is 0, don't move h and return
 * s. */
1407
char *get_history_completion(filestruct **h, const char *s, size_t len)
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
{
    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);

1426
1427
1428
	/* Search the history list from the current position to the
	 * bottom for a match of len characters.  Skip over an exact
	 * match. */
1429
1430
	p = find_history((*h)->next, hbot, s, len);

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

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

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

1443
1444
1445
	while (p != NULL && strcmp(p->data, s) == 0)
	    p = find_history(p->next, *h, s, len);

1446
1447
1448
1449
1450
1451
	if (p != NULL) {
	    *h = p;
	    return (*h)->data;
	}
    }

1452
1453
    /* If we're here, we didn't find a match, we didn't find an inexact
     * match, or len is 0.  Return s. */
1454
    return (char *)s;
1455
}
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1456
#endif /* !DISABLE_TABCOMP */
1457
#endif /* !NANO_TINY */