search.c 37.2 KB
Newer Older
Chris Allegretta's avatar
Chris Allegretta committed
1
/**************************************************************************
2
 *   search.c  --  This file is part of GNU nano.                         *
Chris Allegretta's avatar
Chris Allegretta committed
3
 *                                                                        *
4
 *   Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,  *
5
 *   2008, 2009, 2010, 2011, 2013, 2014 Free Software Foundation, Inc.    *
6
7
 *   Copyright (C) 2015, 2016 Benno Schulenberg                           *
 *                                                                        *
8
9
10
11
 *   GNU nano is free software: you can redistribute it and/or modify     *
 *   it under the terms of the GNU General Public License as published    *
 *   by the Free Software Foundation, either version 3 of the License,    *
 *   or (at your option) any later version.                               *
Chris Allegretta's avatar
Chris Allegretta committed
12
 *                                                                        *
13
14
15
16
 *   GNU nano 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
17
18
 *                                                                        *
 *   You should have received a copy of the GNU General Public License    *
19
 *   along with this program.  If not, see http://www.gnu.org/licenses/.  *
Chris Allegretta's avatar
Chris Allegretta committed
20
21
22
 *                                                                        *
 **************************************************************************/

23
#include "proto.h"
24

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

32
33
static bool came_full_circle = FALSE;
	/* Have we reached the starting line again while searching? */
34
#ifndef DISABLE_HISTORIES
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
    int rc;

    assert(!regexp_compiled);

50
51
    rc = regcomp(&search_regexp, fixbounds(regexp),
		NANO_REG_EXTENDED | (ISSET(CASE_SENSITIVE) ? 0 : REG_ICASE));
52
53
54
55
56
57

    if (rc != 0) {
	size_t len = regerror(rc, &search_regexp, NULL, 0);
	char *str = charalloc(len);

	regerror(rc, &search_regexp, str, len);
58
	statusline(ALERT, _("Bad regex \"%s\": %s"), regexp, str);
59
	free(str);
60
61

	return FALSE;
62
    }
63

64
    regexp_compiled = TRUE;
65
66

    return TRUE;
67
68
}

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

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

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
87
    assert(str != NULL);
88

89
    disp = display_string(str, 0, (COLS / 2) + 1, FALSE);
90
    numchars = actual_x(disp, mbstrnlen(disp, COLS / 2));
91

92
    statusline(HUSH, _("\"%.*s%s\" not found"), numchars, disp,
93
		(disp[numchars] == '\0') ? "" : "...");
94
95

    free(disp);
96
97
}

98
99
100
101
102
/* 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)
103
{
104
#ifndef NANO_TINY
105
    if (openfile->mark_set)
106
	refresh_needed = TRUE;
107
#endif
108
#ifdef HAVE_REGEX_H
109
    regexp_cleanup();
110
111
112
#endif
}

113
/* Set up the system variables for a search or replace.  If use_answer
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
114
115
116
117
118
 * 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
119
 *
120
121
122
 * 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
123
{
124
    int i = 0;
125
    char *buf;
126
    static char *backupstring = NULL;
127
	/* The search string we'll be using. */
128
    functionptrtype func;
129
130
131
132
133
134

    /* If use_answer is TRUE, set backupstring to answer and get out. */
    if (use_answer) {
	backupstring = mallocstrcpy(backupstring, answer);
	return 0;
    }
135
136
137
138

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

141
    if (*last_search != '\0') {
142
	char *disp = display_string(last_search, 0, COLS / 3, FALSE);
143

144
	buf = charalloc(strlen(disp) + 7);
145
	/* We use (COLS / 3) here because we need to see more on the line. */
146
	sprintf(buf, " [%s%s]", disp,
147
		(strlenpt(last_search) > COLS / 3) ? "..." : "");
148
	free(disp);
149
150
    } else
	buf = mallocstrcpy(NULL, "");
Chris Allegretta's avatar
Chris Allegretta committed
151

152
    /* This is now one simple call.  It just does a lot. */
153
154
    i = do_prompt(FALSE,
#ifndef DISABLE_TABCOMP
155
		TRUE,
156
#endif
157
		replacing ? MREPLACE : MWHEREIS, backupstring,
158
#ifndef DISABLE_HISTORIES
159
		&search_history,
160
#endif
161
162
163
		/* TRANSLATORS: This is the main search prompt. */
		edit_refresh, "%s%s%s%s%s%s", _("Search"),
		/* TRANSLATORS: The next three modify the search prompt. */
164
		ISSET(CASE_SENSITIVE) ? _(" [Case Sensitive]") : "",
165
#ifdef HAVE_REGEX_H
166
		ISSET(USE_REGEXP) ? _(" [Regexp]") :
167
#endif
168
		"",
169
		ISSET(BACKWARDS_SEARCH) ? _(" [Backwards]") : "", replacing ?
170
#ifndef NANO_TINY
171
172
		/* TRANSLATORS: The next two modify the search prompt. */
		openfile->mark_set ? _(" (to replace) in selection") :
173
#endif
174
		_(" (to replace)") : "", buf);
Chris Allegretta's avatar
Chris Allegretta committed
175

176
    /* Release buf now that we don't need it anymore. */
Chris Allegretta's avatar
Chris Allegretta committed
177
178
    free(buf);

179
180
181
    free(backupstring);
    backupstring = NULL;

182
183
184
    /* If the search was cancelled, or we have a blank answer and
     * nothing was searched for yet during this session, get out. */
    if (i == -1 || (i == -2 && *last_search == '\0')) {
185
	statusbar(_("Cancelled"));
Chris Allegretta's avatar
Chris Allegretta committed
186
	return -1;
187
    }
188

189
190
191
192
193
    /* If Enter was pressed, see what we got. */
    if (i == 0 || i == -2) {
	/* If an answer was given, remember it. */
	if (*answer != '\0') {
	    last_search = mallocstrcpy(last_search, answer);
194
#ifndef DISABLE_HISTORIES
195
	    update_history(&search_history, answer);
196
#endif
197
198
199
200
201
	}
#ifdef HAVE_REGEX_H
	if (ISSET(USE_REGEXP) && !regexp_init(last_search))
	    return -1;
	else
202
#endif
203
204
205
206
207
208
209
210
211
212
213
214
215
	    return 0;	/* We have a valid string or regex. */
    }

    func = func_from_key(&i);

    if (func == case_sens_void) {
	TOGGLE(CASE_SENSITIVE);
	backupstring = mallocstrcpy(backupstring, answer);
	return 1;
    } else if (func == backwards_void) {
	TOGGLE(BACKWARDS_SEARCH);
	backupstring = mallocstrcpy(backupstring, answer);
	return 1;
216
    } else
217
#ifdef HAVE_REGEX_H
218
    if (func == regexp_void) {
219
220
221
	TOGGLE(USE_REGEXP);
	backupstring = mallocstrcpy(backupstring, answer);
	return 1;
222
    } else
223
#endif
224
    if (func == do_replace || func == flip_replace_void) {
225
226
227
228
	backupstring = mallocstrcpy(backupstring, answer);
	return -2;	/* Call the opposite search function. */
    } else if (func == do_gotolinecolumn_void) {
	do_gotolinecolumn(openfile->current->lineno,
229
			openfile->placewewant + 1, TRUE, TRUE);
230
	return 3;
Chris Allegretta's avatar
Chris Allegretta committed
231
    }
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
232

233
    return -1;
Chris Allegretta's avatar
Chris Allegretta committed
234
235
}

236
/* Look for needle, starting at (current, current_x).  begin is the line
237
238
239
 * where we first started searching, at column begin_x.  Return 1 when we
 * found something, 0 when nothing, and -2 on cancel.  When match_len is
 * not NULL, set it to the length of the found string, if any. */
240
241
int findnextstr(const char *needle, bool whole_word_only, size_t *match_len,
	const filestruct *begin, size_t begin_x)
Chris Allegretta's avatar
Chris Allegretta committed
242
{
243
    size_t found_len;
244
	/* The length of the match we find. */
245
246
    int feedback = 0;
	/* When bigger than zero, show and wipe the "Searching..." message. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
247
248
    filestruct *fileptr = openfile->current;
    const char *rev_start = fileptr->data, *found = NULL;
249
250
    size_t found_x;
	/* The x coordinate of a found occurrence. */
251
    time_t lastkbcheck = time(NULL);
252
253
254
255
256
257

    /* 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. */
258
259
260
261
262
263
264
    if (ISSET(BACKWARDS_SEARCH)) {
	if (openfile->current_x == 0)
	    rev_start += -1;
	else
	    rev_start += move_mbleft(fileptr->data, openfile->current_x);
    } else
	rev_start += move_mbright(fileptr->data, openfile->current_x);
Chris Allegretta's avatar
Chris Allegretta committed
265

266
    enable_nodelay();
267

268
269
270
    if (begin == NULL)
	came_full_circle = FALSE;

271
    /* Start searching through the lines, looking for the needle. */
272
    while (TRUE) {
273
274
	/* Glance at the keyboard once every second. */
	if (time(NULL) - lastkbcheck > 0) {
275
276
	    int input = parse_kbinput(edit);

277
	    lastkbcheck = time(NULL);
278

279
280
281
282
283
284
285
286
	    /* Consume all waiting keystrokes until a Cancel. */
	    while (input) {
		if (func_from_key(&input) == do_cancel) {
		    statusbar(_("Cancelled"));
		    disable_nodelay();
		    return -2;
		}
		input = parse_kbinput(NULL);
287
	    }
288
289

	    if (++feedback > 0)
290
291
		/* TRANSLATORS: This is shown when searching takes
		 * more than half a second. */
292
		statusbar(_("Searching..."));
293
294
	}

295
	/* Search for the needle in the current line. */
296
	found = strstrwrapper(fileptr->data, needle, rev_start);
Chris Allegretta's avatar
Chris Allegretta committed
297

298
	if (found != NULL) {
299
	    /* Remember the length of the potential match. */
300
	    found_len =
301
#ifdef HAVE_REGEX_H
302
303
		ISSET(USE_REGEXP) ?
		regmatches[0].rm_eo - regmatches[0].rm_so :
304
#endif
305
		strlen(needle);
306

307
#ifndef DISABLE_SPELLER
308
309
	    /* When we're spell checking, a match is only a true match when
	     * it is a separate word. */
310
	    if (whole_word_only) {
311
312
313
		if (is_separate_word(found - fileptr->data, found_len,
					fileptr->data))
		    break;
314
315
316
317
318
		else {
		    /* Maybe there is a whole word in the rest of the line. */
		    rev_start = found + 1;
		    continue;
		}
319
	    } else
320
#endif
321
		break;
Chris Allegretta's avatar
Chris Allegretta committed
322
	}
323

324
	/* If we're back at the beginning, then there is no needle. */
325
	if (came_full_circle) {
326
	    not_found_msg(needle);
327
	    disable_nodelay();
328
	    return 0;
329
	}
330

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
331
	/* Move to the previous or next line in the file. */
332
	if (ISSET(BACKWARDS_SEARCH))
333
	    fileptr = fileptr->prev;
334
	else
335
	    fileptr = fileptr->next;
336

337
	/* If we've reached the start or end of the buffer, wrap around. */
338
	if (fileptr == NULL) {
339
340
341
342
343
344
345
#ifndef DISABLE_SPELLER
	    /* When we're spell-checking, end-of-buffer means we're done. */
	    if (whole_word_only) {
		disable_nodelay();
		return 0;
	    }
#endif
346
	    if (ISSET(BACKWARDS_SEARCH))
347
		fileptr = openfile->filebot;
348
	    else
349
		fileptr = openfile->fileage;
350

351
	    statusbar(_("Search Wrapped"));
352
353
	    /* Delay the "Searching..." message for at least two seconds. */
	    feedback = -2;
354
	}
Chris Allegretta's avatar
Chris Allegretta committed
355

356
	/* If we've reached the original starting line, take note. */
357
	if (fileptr == begin)
358
	    came_full_circle = TRUE;
359

360
	/* Set the starting x to the start or end of the line. */
361
	rev_start = fileptr->data;
362
	if (ISSET(BACKWARDS_SEARCH))
363
364
	    rev_start += strlen(fileptr->data);
    }
365

366
367
368
    found_x = found - fileptr->data;

    /* Ensure that the found occurrence is not beyond the starting x. */
369
370
    if (came_full_circle && ((!ISSET(BACKWARDS_SEARCH) && found_x > begin_x) ||
			(ISSET(BACKWARDS_SEARCH) && found_x < begin_x))) {
371
372
373
374
375
	not_found_msg(needle);
	disable_nodelay();
	return 0;
    }

376
    disable_nodelay();
377

378
    /* Set the current position to point at what we found. */
379
    openfile->current = fileptr;
380
    openfile->current_x = found_x;
381
    openfile->current_y = fileptr->lineno - openfile->edittop->lineno;
382

383
384
385
    /* When requested, pass back the length of the match. */
    if (match_len != NULL)
	*match_len = found_len;
386

387
388
389
    if (feedback > 0)
	blank_statusbar();

390
    return 1;
Chris Allegretta's avatar
Chris Allegretta committed
391
392
}

393
/* Ask what to search for and then go looking for it. */
394
void do_search(void)
Chris Allegretta's avatar
Chris Allegretta committed
395
{
396
    int i = search_init(FALSE, FALSE);
397

398
    if (i == -1)	/* Cancelled, or some other exit reason. */
399
	search_replace_abort();
400
    else if (i == -2)	/* Do a replace instead. */
Chris Allegretta's avatar
Chris Allegretta committed
401
	do_replace();
402
    else if (i == 1)	/* Toggled something. */
Chris Allegretta's avatar
Chris Allegretta committed
403
	do_search();
404

405
406
    if (i == 0)
	go_looking();
Chris Allegretta's avatar
Chris Allegretta committed
407
408
}

409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
#ifndef NANO_TINY
/* Search in the backward direction for the next occurrence. */
void do_findprevious(void)
{
    if ISSET(BACKWARDS_SEARCH)
	do_research();
    else {
	SET(BACKWARDS_SEARCH);
	do_research();
	UNSET(BACKWARDS_SEARCH);
    }
}

/* Search in the forward direction for the next occurrence. */
void do_findnext(void)
{
    if ISSET(BACKWARDS_SEARCH) {
	UNSET(BACKWARDS_SEARCH);
	do_research();
	SET(BACKWARDS_SEARCH);
    } else
	do_research();
}
432
#endif /* !NANO_TINY */
433

434
/* Search for the last string without prompting. */
435
void do_research(void)
436
{
437
438
439
#ifndef DISABLE_HISTORIES
    /* If nothing was searched for yet during this run of nano, but
     * there is a search history, take the most recent item. */
440
    if (*last_search == '\0' && searchbot->prev != NULL)
441
442
443
	last_search = mallocstrcpy(last_search, searchbot->prev->data);
#endif

444
    if (*last_search == '\0') {
445
	statusbar(_("No current search pattern"));
446
447
448
	return;
    }

449
#ifdef HAVE_REGEX_H
450
451
    if (ISSET(USE_REGEXP) && !regexp_init(last_search))
	return;
452
453
#endif

454
455
    /* Use the search-menu key bindings, to allow cancelling. */
    currmenu = MWHEREIS;
456

457
458
459
460
461
462
463
464
465
    go_looking();
}

/* Search for the global string 'last_search'.  Inform the user when
 * the string occurs only once. */
void go_looking(void)
{
    filestruct *was_current = openfile->current;
    size_t was_current_x = openfile->current_x;
466
    int didfind;
467
468
469
#ifdef DEBUG
    clock_t start = clock();
#endif
470

471
    came_full_circle = FALSE;
472

473
474
    didfind = findnextstr(last_search, FALSE, NULL,
				openfile->current, openfile->current_x);
475

476
477
    /* If we found something, and we're back at the exact same spot
     * where we started searching, then this is the only occurrence. */
478
    if (didfind == 1 && openfile->current == was_current &&
479
		openfile->current_x == was_current_x)
480
	statusbar(_("This is the only occurrence"));
481

482
483
484
485
#ifdef DEBUG
    statusline(HUSH, "Took: %.2f", (double)(clock() - start) / CLOCKS_PER_SEC);
#endif

486
    edit_redraw(was_current);
487
    search_replace_abort();
488
489
}

490
#ifdef HAVE_REGEX_H
491
/* Calculate the size of the replacement text, taking possible
492
493
 * subexpressions \1 to \9 into account.  Return the replacement
 * text in the passed string only when create is TRUE. */
494
int replace_regexp(char *string, bool create)
495
{
496
    const char *c = answer;
497
    size_t replacement_size = 0;
498

Chris Allegretta's avatar
Chris Allegretta committed
499
500
    /* Iterate through the replacement text to handle subexpression
     * replacement using \1, \2, \3, etc. */
501
    while (*c != '\0') {
502
	int num = (*(c + 1) - '0');
503

504
	if (*c != '\\' || num < 1 || num > 9 || num > search_regexp.re_nsub) {
505
	    if (create)
506
507
		*string++ = *c;
	    c++;
508
	    replacement_size++;
509
	} else {
510
	    size_t i = regmatches[num].rm_eo - regmatches[num].rm_so;
511

512
513
	    /* Skip over the replacement expression. */
	    c += 2;
514

515
	    /* But add the length of the subexpression to new_size. */
516
	    replacement_size += i;
517

518
	    /* And if create is TRUE, append the result of the
519
	     * subexpression match to the new line. */
520
	    if (create) {
521
522
		strncpy(string, openfile->current->data +
			openfile->current_x + regmatches[num].rm_so, i);
523
		string += i;
524
525
	    }
	}
526
527
    }

528
    if (create)
Chris Allegretta's avatar
Chris Allegretta committed
529
	*string = '\0';
530

531
    return replacement_size;
532
}
533
#endif /* HAVE_REGEX_H */
534

535
/* Return a copy of the current line with one needle replaced. */
536
char *replace_line(const char *needle)
537
{
538
    char *copy;
539
540
    size_t match_len;
    size_t new_line_size = strlen(openfile->current->data) + 1;
541

542
    /* First adjust the size of the new line for the change. */
543
#ifdef HAVE_REGEX_H
544
    if (ISSET(USE_REGEXP)) {
545
546
	match_len = regmatches[0].rm_eo - regmatches[0].rm_so;
	new_line_size += replace_regexp(NULL, FALSE) - match_len;
547
    } else {
548
#endif
549
550
	match_len = strlen(needle);
	new_line_size += strlen(answer) - match_len;
551
#ifdef HAVE_REGEX_H
552
    }
553
#endif
554

555
    /* Create the buffer. */
556
    copy = charalloc(new_line_size);
557

558
    /* Copy the head of the original line. */
559
    strncpy(copy, openfile->current->data, openfile->current_x);
560

561
    /* Add the replacement text. */
562
#ifdef HAVE_REGEX_H
563
    if (ISSET(USE_REGEXP))
564
	replace_regexp(copy + openfile->current_x, TRUE);
565
    else
566
#endif
567
	strcpy(copy + openfile->current_x, answer);
568

569
    assert(openfile->current_x + match_len <= strlen(openfile->current->data));
570

571
    /* Copy the tail of the original line. */
572
    strcat(copy, openfile->current->data + openfile->current_x + match_len);
573
574

    return copy;
Chris Allegretta's avatar
Chris Allegretta committed
575
576
}

577
578
579
/* Step through each occurrence of the search string and prompt the user
 * before replacing it.  We seek for needle, and replace it with answer.
 * The parameters real_current and real_current_x are needed in order to
580
 * allow the cursor position to be updated when a word before the cursor
581
582
 * is replaced by a shorter word.  Return -1 if needle isn't found, -2 if
 * the seeking is aborted, else the number of replacements performed. */
583
584
ssize_t do_replace_loop(const char *needle, bool whole_word_only,
	const filestruct *real_current, size_t *real_current_x)
Chris Allegretta's avatar
Chris Allegretta committed
585
{
586
587
    ssize_t numreplaced = -1;
    size_t match_len;
588
    bool replaceall = FALSE;
589
#ifndef NANO_TINY
590
    bool old_mark_set = openfile->mark_set;
591
    filestruct *top, *bot;
592
593
    size_t top_x, bot_x;
    bool right_side_up = FALSE;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
594
	/* TRUE if (mark_begin, mark_begin_x) is the top of the mark,
595
	 * FALSE if (current, current_x) is. */
Chris Allegretta's avatar
Chris Allegretta committed
596

597
    /* If the mark is on, frame the region, and turn the mark off. */
598
    if (old_mark_set) {
599
	mark_order((const filestruct **)&top, &top_x,
600
			(const filestruct **)&bot, &bot_x, &right_side_up);
601
	openfile->mark_set = FALSE;
602
603
604
605
606
607
608
609
610

	/* Start either at the top or the bottom of the marked region. */
	if (!ISSET(BACKWARDS_SEARCH)) {
	    openfile->current = top;
	    openfile->current_x = (top_x == 0 ? 0 : top_x - 1);
	} else {
	    openfile->current = bot;
	    openfile->current_x = bot_x;
	}
611
    }
612
#endif /* !NANO_TINY */
613

614
    came_full_circle = FALSE;
615

616
617
    while (TRUE) {
	int i = 0;
618
619
	int result = findnextstr(needle, whole_word_only, &match_len,
					real_current, *real_current_x);
620
621
622
623
624
625
626

	/* If nothing more was found, or the user aborted, stop looping. */
	if (result < 1) {
	    if (result < 0)
		numreplaced = -2;  /* It's a Cancel instead of Not found. */
	    break;
	}
627

628
629
630
631
632
#ifndef NANO_TINY
	if (old_mark_set) {
	    /* When we've found an occurrence outside of the marked region,
	     * stop the fanfare. */
	    if (openfile->current->lineno > bot->lineno ||
633
634
635
			openfile->current->lineno < top->lineno ||
			(openfile->current == bot && openfile->current_x > bot_x) ||
			(openfile->current == top && openfile->current_x < top_x))
636
637
638
639
		break;
	}
#endif

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
640
	/* Indicate that we found the search string. */
641
642
	if (numreplaced == -1)
	    numreplaced = 0;
643

644
	if (!replaceall) {
645
	    size_t xpt = xplustabs();
646
	    char *exp_word = display_string(openfile->current->data,
647
648
			xpt, strnlenpt(openfile->current->data,
			openfile->current_x + match_len) - xpt, FALSE);
649

650
	    /* Refresh the edit window, scrolling it if necessary. */
651
652
	    edit_refresh();

653
	    /* Don't show cursor, to not distract from highlighted match. */
654
	    curs_set(0);
655

656
	    spotlight(TRUE, exp_word);
657

658
	    /* TRANSLATORS: This is a prompt. */
659
	    i = do_yesno_prompt(TRUE, _("Replace this instance?"));
Chris Allegretta's avatar
Chris Allegretta committed
660

661
	    spotlight(FALSE, exp_word);
662

663
	    free(exp_word);
664

665
	    if (i == -1)  /* The replacing was cancelled. */
666
		break;
667
668
	    else if (i == 2)
		replaceall = TRUE;
669
670
	}

671
	if (i == 1 || replaceall) {  /* Yes, replace it. */
672
	    char *copy;
673
	    size_t length_change;
674

675
#ifndef NANO_TINY
676
	    add_undo(REPLACE);
677
#endif
678
	    copy = replace_line(needle);
Chris Allegretta's avatar
Chris Allegretta committed
679

680
	    length_change = strlen(copy) - strlen(openfile->current->data);
Chris Allegretta's avatar
Chris Allegretta committed
681

682
#ifndef NANO_TINY
683
684
685
	    /* If the mark was on and it was located after the cursor,
	     * then adjust its x position for any text length changes. */
	    if (old_mark_set && !right_side_up) {
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
686
687
		if (openfile->current == openfile->mark_begin &&
			openfile->mark_begin_x > openfile->current_x) {
688
		    if (openfile->mark_begin_x < openfile->current_x + match_len)
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
689
			openfile->mark_begin_x = openfile->current_x;
690
		    else
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
691
			openfile->mark_begin_x += length_change;
692
		    bot_x = openfile->mark_begin_x;
693
		}
694
	    }
Chris Allegretta's avatar
Chris Allegretta committed
695

696
697
	    /* If the mark was not on or it was before the cursor, then
	     * adjust the cursor's x position for any text length changes. */
698
	    if (!old_mark_set || right_side_up) {
699
#endif
700
701
		if (openfile->current == real_current &&
			openfile->current_x <= *real_current_x) {
702
703
		    if (*real_current_x < openfile->current_x + match_len)
			*real_current_x = openfile->current_x + match_len;
704
		    *real_current_x += length_change;
705
#ifndef NANO_TINY
706
		    bot_x = *real_current_x;
707
		}
708
#endif
709
	    }
710

711
#ifdef HAVE_REGEX_H
712
713
	    /* Don't find the same zero-length or BOL match again. */
	    if (match_len == 0 || (*needle == '^' && ISSET(USE_REGEXP)))
714
715
		match_len++;
#endif
716
	    /* Set the cursor at the last character of the replacement
717
718
	     * text, so that searching will continue /after/ it.  Note
	     * that current_x might be set to (size_t)-1 here. */
719
	    if (!ISSET(BACKWARDS_SEARCH))
720
		openfile->current_x += match_len + length_change - 1;
721

722
723
	    /* Update the file size, and put the changed line into place. */
	    openfile->totsize += mbstrlen(copy) - mbstrlen(openfile->current->data);
724
725
	    free(openfile->current->data);
	    openfile->current->data = copy;
726

727
#ifndef DISABLE_COLOR
728
729
730
731
	    /* Reset the precalculated multiline-regex hints only when
	     * the first replacement has been made. */
	    if (numreplaced == 0)
		reset_multis(openfile->current, TRUE);
732
#endif
733

734
	    if (!replaceall) {
735
#ifndef DISABLE_COLOR
736
737
		/* When doing syntax coloring, the replacement might require
		 * a change of colors, so refresh the whole edit window. */
738
		if (openfile->colorstrings != NULL && !ISSET(NO_COLOR_SYNTAX))
739
740
741
		    edit_refresh();
		else
#endif
742
		    update_line(openfile->current, openfile->current_x);
743
744
	    }

Chris Allegretta's avatar
Chris Allegretta committed
745
	    set_modified();
746
	    as_an_at = TRUE;
Chris Allegretta's avatar
Chris Allegretta committed
747
	    numreplaced++;
748
	}
Chris Allegretta's avatar
Chris Allegretta committed
749
750
    }

751
752
753
    if (numreplaced == -1)
	not_found_msg(needle);

754
#ifndef NANO_TINY
755
    if (old_mark_set)
756
	openfile->mark_set = TRUE;
757
758
#endif

759
760
761
    /* 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')
762
763
	new_magicline();

Chris Allegretta's avatar
Chris Allegretta committed
764
765
766
    return numreplaced;
}

Chris Allegretta's avatar
Chris Allegretta committed
767
/* Replace a string. */
768
void do_replace(void)
Chris Allegretta's avatar
Chris Allegretta committed
769
{
770
    filestruct *edittop_save, *begin;
771
    size_t begin_x;
772
    ssize_t numreplaced;
773
    int i;
Chris Allegretta's avatar
Chris Allegretta committed
774

Chris Allegretta's avatar
Chris Allegretta committed
775
776
    if (ISSET(VIEW_MODE)) {
	print_view_warning();
777
	return;
Chris Allegretta's avatar
Chris Allegretta committed
778
779
    }

780
    i = search_init(TRUE, FALSE);
781
782

    if (i == -1)	/* Cancelled, or some other exit reason. */
783
	search_replace_abort();
784
    else if (i == -2)	/* Do a search instead. */
Chris Allegretta's avatar
Chris Allegretta committed
785
	do_search();
786
    else if (i == 1)	/* Toggled something. */
787
788
789
	do_replace();

    if (i != 0)
790
	return;
Chris Allegretta's avatar
Chris Allegretta committed
791

792
793
    i = do_prompt(FALSE,
#ifndef DISABLE_TABCOMP
794
		TRUE,
795
#endif
796
		MREPLACEWITH, NULL,
797
#ifndef DISABLE_HISTORIES
798
		&replace_history,
799
#endif
800
801
		/* TRANSLATORS: This is a prompt. */
		edit_refresh, _("Replace with"));
802

803
#ifndef DISABLE_HISTORIES
804
    /* If the replace string is not "", add it to the replace history list. */
805
    if (i == 0)
806
	update_history(&replace_history, answer);
807
808
#endif

809
810
811
    /* When cancelled, or when a function was run, get out. */
    if (i == -1 || i > 0) {
	if (i == -1)
812
	    statusbar(_("Cancelled"));
813
	search_replace_abort();
814
	return;
815
816
817
    }

    /* Save where we are. */
818
819
    edittop_save = openfile->edittop;
    begin = openfile->current;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
820
    begin_x = openfile->current_x;
Chris Allegretta's avatar
Chris Allegretta committed
821

822
    numreplaced = do_replace_loop(last_search, FALSE, begin, &begin_x);
Chris Allegretta's avatar
Chris Allegretta committed
823

824
    /* Restore where we were. */
825
826
    openfile->edittop = edittop_save;
    openfile->current = begin;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
827
    openfile->current_x = begin_x;
828
    refresh_needed = TRUE;
Chris Allegretta's avatar
Chris Allegretta committed
829
830

    if (numreplaced >= 0)
831
	statusline(HUSH, P_("Replaced %lu occurrence",
832
833
		"Replaced %lu occurrences", (unsigned long)numreplaced),
		(unsigned long)numreplaced);
Chris Allegretta's avatar
Chris Allegretta committed
834

835
    search_replace_abort();
Chris Allegretta's avatar
Chris Allegretta committed
836
837
}

838
839
840
/* Go to the specified line and x position. */
void goto_line_posx(ssize_t line, size_t pos_x)
{
841
842
    for (openfile->current = openfile->fileage; line > 1 &&
		openfile->current != openfile->filebot; line--)
843
844
845
846
847
	openfile->current = openfile->current->next;

    openfile->current_x = pos_x;
    openfile->placewewant = xplustabs();

848
    refresh_needed = TRUE;
849
850
}

851
/* Go to the specified line and column, or ask for them if interactive
852
 * is TRUE.  In the latter case also update the screen afterwards.
853
 * Note that both the line and column number should be one-based. */
854
void do_gotolinecolumn(ssize_t line, ssize_t column, bool use_answer,
855
	bool interactive)
Chris Allegretta's avatar
Chris Allegretta committed
856
{
857
    if (interactive) {
858
	functionptrtype func;
859

860
	/* Ask for the line and column. */
861
862
863
864
	int i = do_prompt(FALSE,
#ifndef DISABLE_TABCOMP
		TRUE,
#endif
865
		MGOTOLINE, use_answer ? answer : NULL,
866
#ifndef DISABLE_HISTORIES
867
		NULL,
Chris Allegretta's avatar
Chris Allegretta committed
868
#endif
869
		/* TRANSLATORS: This is a prompt. */
870
		edit_refresh, _("Enter line number, column number"));
871

872
	/* If the user cancelled or gave a blank answer, get out. */
873
	if (i < 0) {
874
	    statusbar(_("Cancelled"));
875
876
877
	    return;
	}

878
	func = func_from_key(&i);
879

880
	if (func == gototext_void) {
881
	    /* Retain what the user typed so far and switch to searching. */
882
	    search_init(TRUE, TRUE);
883
	    do_search();
Chris Allegretta's avatar
Chris Allegretta committed
884
	}
885

886
887
888
889
	/* If a function was executed, we're done here. */
	if (i > 0)
	    return;

890
891
	/* Try to extract one or two numbers from the user's response. */
	if (!parse_line_column(answer, &line, &column)) {
892
	    statusbar(_("Invalid line or column number"));
893
	    return;
Chris Allegretta's avatar
Chris Allegretta committed
894
	}
895
896
    } else {
	if (line < 1)
897
	    line = openfile->current->lineno;
898

899
	if (column < 1)
900
	    column = openfile->placewewant + 1;
Chris Allegretta's avatar
Chris Allegretta committed
901
902
    }

903
904
905
906
907
908
909
    /* Take a negative line number to mean: from the end of the file. */
    if (line < 0)
	line = openfile->filebot->lineno + line + 1;
    if (line < 1)
	line = 1;

    /* Iterate to the requested line. */
910
911
    for (openfile->current = openfile->fileage; line > 1 &&
		openfile->current != openfile->filebot; line--)
912
	openfile->current = openfile->current->next;
Chris Allegretta's avatar
Chris Allegretta committed
913

914
915
916
917
918
919
920
    /* Take a negative column number to mean: from the end of the line. */
    if (column < 0)
	column = strlenpt(openfile->current->data) + column + 2;
    if (column < 1)
	column = 1;

    /* Set the x position that corresponds to the requested column. */
921
922
    openfile->current_x = actual_x(openfile->current->data, column - 1);
    openfile->placewewant = column - 1;
923

924
    /* When the position was manually given, center the target line. */
925
    if (interactive || ISSET(SOFTWRAP)) {
926
927
	adjust_viewport(CENTERING);
	refresh_needed = TRUE;
928
929
930
931
932
933
934
935
    } else {
	/* If the target line is close to the tail of the file, put the last
	 * line of the file on the bottom line of the screen; otherwise, just
	 * center the target line. */
	if (openfile->filebot->lineno - openfile->current->lineno <
							editwinrows / 2) {
	    openfile->current_y = editwinrows - openfile->filebot->lineno +
					openfile->current->lineno - 1;
936
	    adjust_viewport(STATIONARY);
937
	} else
938
	    adjust_viewport(CENTERING);
939
    }
Chris Allegretta's avatar
Chris Allegretta committed
940
941
}

942
/* Go to the specified line and column, asking for them beforehand. */
943
void do_gotolinecolumn_void(void)
Chris Allegretta's avatar
Chris Allegretta committed
944
{
945
    do_gotolinecolumn(openfile->current->lineno,
946
	openfile->placewewant + 1, FALSE, TRUE);
Chris Allegretta's avatar
Chris Allegretta committed
947
}
948

949
#ifndef NANO_TINY
950
/* Search for a match to one of the two characters in bracket_set.  If
951
952
953
 * 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. */
954
955
956
957
958
bool find_bracket_match(bool reverse, const char *bracket_set)
{
    filestruct *fileptr = openfile->current;
    const char *rev_start = NULL, *found = NULL;

959
    assert(mbstrlen(bracket_set) == 2);
960
961
962
963
964

    /* 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. */
965
966
967
968
    if (reverse)
	rev_start = fileptr->data + (openfile->current_x - 1);
    else
	rev_start = fileptr->data + (openfile->current_x + 1);
969
970
971
972
973

    /* 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) {
974
975
976
977
978
979
980
	if ((rev_start > fileptr->data && *(rev_start - 1) == '\0') ||
			rev_start < fileptr->data)
	    found = NULL;
	else if (reverse)
	    found = mbrevstrpbrk(fileptr->data, bracket_set, rev_start);
	else
	    found = mbstrpbrk(rev_start, bracket_set);
981

982
	if (found)
983
984
	    break;

985
	if (reverse)
986
	    fileptr = fileptr->prev;
987
	else
988
989
	    fileptr = fileptr->next;

990
	/* If we've reached the start or end of the buffer, get out. */
991
992
993
994
995
996
997
998
	if (fileptr == NULL)
	    return FALSE;

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

999
    /* Set the current position to the found matching bracket. */
1000
    openfile->current = fileptr;
1001
    openfile->current_x = found - fileptr->data;
1002
    openfile->current_y = fileptr->lineno - openfile->edittop->lineno;
1003
1004
1005
1006
1007
1008

    return TRUE;
}

/* Search for a match to the bracket at the current cursor position, if
 * there is one. */
1009
void do_find_bracket(void)
1010
{
1011
    filestruct *current_save;
1012
    size_t current_x_save;
1013
    const char *ch;
1014
	/* The location in matchbrackets of the bracket at the current
1015
	 * cursor position. */
1016
1017
1018
    int ch_len;
	/* The length of ch in bytes. */
    const char *wanted_ch;
1019
1020
	/* The location in matchbrackets of the bracket complementing
	 * the bracket at the current cursor position. */
1021
1022
1023
    int wanted_ch_len;
	/* The length of wanted_ch in bytes. */
    char *bracket_set;
1024
	/* The pair of characters in ch and wanted_ch. */
1025
1026
    size_t i;
	/* Generic loop variable. */
1027
    size_t matchhalf;
1028
1029
1030
1031
1032
	/* The number of single-byte characters in one half of
	 * matchbrackets. */
    size_t mbmatchhalf;
	/* The number of multibyte characters in one half of
	 * matchbrackets. */
1033
1034
1035
1036
    size_t count = 1;
	/* The initial bracket count. */
    bool reverse;
	/* The direction we search. */
1037
1038
    char *found_ch;
	/* The character we find. */
1039

1040
    assert(mbstrlen(matchbrackets) % 2 == 0);
1041

1042
    ch = openfile->current->data + openfile->current_x;
1043

1044
    if ((ch = mbstrchr(matchbrackets, ch)) == NULL) {
1045
	statusbar(_("Not a bracket"));
1046
	return;
1047
1048
    }

1049
    /* Save where we are. */
1050
1051
    current_save = openfile->current;
    current_x_save = openfile->current_x;
1052

1053
    /* If we're on an opening bracket, which must be in the first half
1054
     * of matchbrackets, we want to search forwards for a closing
1055
     * bracket.  If we're on a closing bracket, which must be in the
1056
     * second half of matchbrackets, we want to search backwards for an
1057
     * opening bracket. */
1058
1059
1060
1061
    matchhalf = 0;
    mbmatchhalf = mbstrlen(matchbrackets) / 2;

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

1064
    reverse = ((ch - matchbrackets) >= matchhalf);
1065
1066

    /* If we're on an opening bracket, set wanted_ch to the character
1067
1068
1069
     * 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. */
1070
1071
    wanted_ch = ch;

1072
    while (mbmatchhalf > 0) {
1073
	if (reverse)
1074
	    wanted_ch = matchbrackets + move_mbleft(matchbrackets,
1075
				wanted_ch - matchbrackets);
1076
1077
1078
	else
	    wanted_ch += move_mbright(wanted_ch, 0);

1079
	mbmatchhalf--;
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
    }

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

1093
    while (TRUE) {
1094
	if (find_bracket_match(reverse, bracket_set)) {
1095
1096
	    /* If we found an identical bracket, increment count.  If we
	     * found a complementary bracket, decrement it. */
1097
	    parse_mbchar(openfile->current->data + openfile->current_x,
1098
			found_ch, NULL);
1099
	    count += (strncmp(found_ch, ch, ch_len) == 0) ? 1 : -1;
1100
1101
1102
1103

	    /* If count is zero, we've found a matching bracket.  Update
	     * the screen and get out. */
	    if (count == 0) {
1104
		focusing = FALSE;
1105
		edit_redraw(current_save);
1106
		break;
1107
	    }
Chris Allegretta's avatar
Chris Allegretta committed
1108
	} else {
1109
1110
	    /* We didn't find either an opening or closing bracket.
	     * Indicate this, restore where we were, and get out. */
1111
	    statusbar(_("No matching bracket"));
1112
1113
	    openfile->current = current_save;
	    openfile->current_x = current_x_save;
1114
1115
1116
	    break;
	}
    }
1117
1118
1119
1120

    /* Clean up. */
    free(bracket_set);
    free(found_ch);
1121
}
1122
#endif /* !NANO_TINY */
1123

1124
#ifndef DISABLE_HISTORIES
1125
1126
1127
1128
1129
/* Indicate whether any of the history lists have changed. */
bool history_has_changed(void)
{
    return history_changed;
}
1130

1131
/* Initialize the search and replace history lists. */
1132
1133
void history_init(void)
{
1134
1135
1136
1137
1138
1139
1140
1141
1142
    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;
1143
1144
}

1145
1146
1147
1148
1149
1150
1151
1152
1153
/* 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;
}

1154
1155
1156
/* 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. */
1157
1158
filestruct *find_history(const filestruct *h_start, const filestruct
	*h_end, const char *s, size_t len)
1159
{
1160
    const filestruct *p;
1161

1162
    for (p = h_start; p != h_end->prev && p != NULL; p = p->prev) {
1163
	if (strncmp(s, p->data, len) == 0)
1164
	    return (filestruct *)p;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1165
    }
1166

1167
1168
1169
    return NULL;
}

1170
1171
/* Update a history list (the one in which h is the current position)
 * with a fresh string s.  That is: add s, or move it to the end. */
1172
void update_history(filestruct **h, const char *s)
1173
{
1174
    filestruct **hage = NULL, **hbot = NULL, *thesame;
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184

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

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

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

1188
    /* See if the string is already in the history. */
1189
    thesame = find_history(*hbot, *hage, s, HIGHEST_POSITIVE);
1190

1191
1192
1193
    /* If an identical string was found, delete that item. */
    if (thesame != NULL) {
	filestruct *after = thesame->next;
1194

1195
1196
1197
	/* If the string is at the head of the list, move the head. */
	if (thesame == *hage)
	    *hage = after;
1198

1199
1200
	unlink_node(thesame);
	renumber(after);
1201
1202
    }

1203
1204
    /* If the history is full, delete the oldest item (the one at the
     * head of the list), to make room for a new item at the end. */
1205
1206
1207
1208
1209
1210
    if ((*hbot)->lineno == MAX_SEARCH_HISTORY + 1) {
	filestruct *foo = *hage;

	*hage = (*hage)->next;
	unlink_node(foo);
	renumber(*hage);
1211
    }
1212

1213
    /* Store the fresh string in the last item, then create a new item. */
1214
    (*hbot)->data = mallocstrcpy((*hbot)->data, s);
1215
    splice_node(*hbot, make_new_node(*hbot));
1216
1217
1218
    *hbot = (*hbot)->next;
    (*hbot)->data = mallocstrcpy(NULL, "");

1219
    /* Indicate that the history needs to be saved on exit. */
1220
1221
1222
1223
    history_changed = TRUE;

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

1226
1227
/* 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. */
1228
char *get_history_older(filestruct **h)
1229
{
1230
    assert(h != NULL);
1231

1232
    if ((*h)->prev == NULL)
1233
	return NULL;
1234
1235
1236
1237

    *h = (*h)->prev;

    return (*h)->data;
1238
1239
}

1240
1241
/* 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. */
1242
char *get_history_newer(filestruct **h)
1243
{
1244
    assert(h != NULL);
1245

1246
    if ((*h)->next == NULL)
1247
	return NULL;
1248

1249
1250
1251
1252
    *h = (*h)->next;

    return (*h)->data;
}
1253

1254
/* More placeholders. */
1255
1256
1257
1258
1259
1260
1261
1262
1263
void get_history_newer_void(void)
{
    ;
}
void get_history_older_void(void)
{
    ;
}

1264
1265
1266
#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
1267
1268
 * string.  If there isn't one, or if len is 0, don't move h and return
 * s. */
1269
char *get_history_completion(filestruct **h, char *s, size_t len)
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
{
    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);

1288
1289
1290
	/* Search the history list from the current position to the top
	 * for a match of len characters.  Skip over an exact match. */
	p = find_history((*h)->prev, hage, s, len);
1291

1292
	while (p != NULL && strcmp(p->data, s) == 0)
1293
	    p = find_history(p->prev, hage, s, len);
1294

1295
1296
	if (p != NULL) {
	    *h = p;
1297
	    return mallocstrcpy(s, (*h)->data);
1298
1299
	}

1300
	/* Search the history list from the bottom to the current position
1301
	 * for a match of len characters.  Skip over an exact match. */
1302
	p = find_history(hbot, *h, s, len);
1303

1304
	while (p != NULL && strcmp(p->data, s) == 0)
1305
	    p = find_history(p->prev, *h, s, len);
1306

1307
1308
	if (p != NULL) {
	    *h = p;
1309
	    return mallocstrcpy(s, (*h)->data);
1310
1311
1312
	}
    }

1313
1314
    /* If we're here, we didn't find a match, we didn't find an inexact
     * match, or len is 0.  Return s. */
1315
    return (char *)s;
1316
}
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1317
#endif /* !DISABLE_TABCOMP */
1318
#endif /* !DISABLE_HISTORIES */