search.c 32.9 KB
Newer Older
Chris Allegretta's avatar
Chris Allegretta committed
1
/* $Id$ */
Chris Allegretta's avatar
Chris Allegretta committed
2
3
4
/**************************************************************************
 *   search.c                                                             *
 *                                                                        *
5
 *   Copyright (C) 2000-2005 Chris Allegretta                             *
Chris Allegretta's avatar
Chris Allegretta committed
6
7
 *   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 *
8
 *   the Free Software Foundation; either version 2, or (at your option)  *
Chris Allegretta's avatar
Chris Allegretta committed
9
10
 *   any later version.                                                   *
 *                                                                        *
11
12
13
14
 *   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
15
16
17
 *                                                                        *
 *   You should have received a copy of the GNU General Public License    *
 *   along with this program; if not, write to the Free Software          *
18
19
 *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA            *
 *   02110-1301, USA.                                                     *
Chris Allegretta's avatar
Chris Allegretta committed
20
21
22
 *                                                                        *
 **************************************************************************/

23
24
25
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
26

Chris Allegretta's avatar
Chris Allegretta committed
27
28
29
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
30
#include <unistd.h>
Chris Allegretta's avatar
Chris Allegretta committed
31
#include <ctype.h>
32
#include <errno.h>
Chris Allegretta's avatar
Chris Allegretta committed
33
#include <assert.h>
Chris Allegretta's avatar
Chris Allegretta committed
34
#include "proto.h"
Chris Allegretta's avatar
Chris Allegretta committed
35

36
37
static bool search_last_line = FALSE;
	/* Have we gone past the last line while searching? */
38
#ifdef HAVE_REGEX_H
39
40
static bool regexp_compiled = FALSE;
	/* Have we compiled any regular expressions? */
41
42
43
44
45
46

/* Regular expression helper functions. */

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

    assert(!regexp_compiled);
    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
	return 0;
64
    }
65

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

70
void regexp_cleanup(void)
71
{
72
73
    if (regexp_compiled) {
	regexp_compiled = FALSE;
74
75
	regfree(&search_regexp);
    }
76
}
77
#endif
78

79
80
void not_found_msg(const char *str)
{
81
82
83
    char *disp;
    int numchars;
 
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
84
    assert(str != NULL);
85

86
    disp = display_string(str, 0, (COLS / 2) + 1, FALSE);
87
    numchars = actual_x(disp, mbstrnlen(disp, COLS / 2));
88
89

    statusbar(_("\"%.*s%s\" not found"), numchars, disp,
90
	(disp[numchars] == '\0') ? "" : "...");
91
92

    free(disp);
93
94
95
96
97
}

void search_abort(void)
{
    display_main_list();
98
#ifndef NANO_SMALL
99
    if (ISSET(MARK_ISSET))
100
101
	edit_refresh();
#endif
102
#ifdef HAVE_REGEX_H
103
    regexp_cleanup();
104
105
106
#endif
}

Chris Allegretta's avatar
Chris Allegretta committed
107
108
void search_init_globals(void)
{
109
110
111
112
    if (last_search == NULL)
	last_search = mallocstrcpy(NULL, "");
    if (last_replace == NULL)
	last_replace = mallocstrcpy(NULL, "");
Chris Allegretta's avatar
Chris Allegretta committed
113
114
}

115
116
117
118
119
120
/* Set up the system variables for a search or replace.  If use_answer
 * is TRUE, only set backupstring to answer.  Return -2 to run opposite
 * program (search -> replace, replace -> search), return -1 if the
 * search should be canceled (due to Cancel, 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
121
 *
122
123
124
 * 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
125
{
126
    int i = 0;
127
    char *buf;
128
    static char *backupstring = NULL;
129
130
131
132
133
134
135
136
137
138
139
	/* 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;
    }
140
141
142
143

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

Chris Allegretta's avatar
Chris Allegretta committed
146
    search_init_globals();
147

148
#ifndef NANO_SMALL
149
    search_history.current = (historytype *)&search_history.next;
150
#endif
151
152

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

155
	buf = charalloc(strlen(disp) + 7);
156
157
	/* We use COLS / 3 here because we need to see more on the
	 * line. */
158
159
160
	sprintf(buf, " [%s%s]", disp,
		strlenpt(last_search) > COLS / 3 ? "..." : "");
	free(disp);
161
162
    } else
	buf = mallocstrcpy(NULL, "");
Chris Allegretta's avatar
Chris Allegretta committed
163

164
    /* This is now one simple call.  It just does a lot. */
165
166
    i = statusq(FALSE, replacing ? replace_list : whereis_list,
	backupstring,
167
168
169
#ifndef NANO_SMALL
	&search_history,
#endif
170
	"%s%s%s%s%s%s", _("Search"),
171

172
#ifndef NANO_SMALL
173
174
	/* This string is just a modifier for the search prompt; no
	 * grammar is implied. */
175
176
177
	ISSET(CASE_SENSITIVE) ? _(" [Case Sensitive]") :
#endif
		"",
178

179
#ifdef HAVE_REGEX_H
180
181
	/* This string is just a modifier for the search prompt; no
	 * grammar is implied. */
182
183
184
	ISSET(USE_REGEXP) ? _(" [Regexp]") :
#endif
		"",
185

186
#ifndef NANO_SMALL
187
188
	/* This string is just a modifier for the search prompt; no
	 * grammar is implied. */
189
190
191
	ISSET(REVERSE_SEARCH) ? _(" [Backwards]") :
#endif
		"",
192

193
194
195
196
197
198
199
200
201
202
	replacing ?
#ifndef NANO_SMALL
		(ISSET(MARK_ISSET) ? _(" (to replace) in selection") :
#endif
		_(" (to replace)")
#ifndef NANO_SMALL
		)
#endif
		: "",

Chris Allegretta's avatar
Chris Allegretta committed
203
	buf);
Chris Allegretta's avatar
Chris Allegretta committed
204

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

208
209
210
    free(backupstring);
    backupstring = NULL;

211
212
213
    /* Cancel any search, or just return with no previous search. */
    if (i == -1 || (i < 0 && last_search[0] == '\0') ||
	    (!replacing && i == 0 && answer[0] == '\0')) {
214
	statusbar(_("Cancelled"));
215
216
217
#ifndef NANO_SMALL
	search_history.current = search_history.next;
#endif
Chris Allegretta's avatar
Chris Allegretta committed
218
	return -1;
Chris Allegretta's avatar
Chris Allegretta committed
219
220
    } else {
	switch (i) {
221
	    case -2:		/* It's the same string. */
222
#ifdef HAVE_REGEX_H
223
224
225
		/* Since answer is "", use last_search! */
		if (ISSET(USE_REGEXP) && regexp_init(last_search) == 0)
		    return -1;
226
#endif
227
228
229
		break;
	    case 0:		/* They entered something new. */
		last_replace[0] = '\0';
230
#ifdef HAVE_REGEX_H
231
232
		if (ISSET(USE_REGEXP) && regexp_init(answer) == 0)
		    return -1;
233
#endif
234
		break;
Chris Allegretta's avatar
Chris Allegretta committed
235
#ifndef NANO_SMALL
236
237
238
239
240
241
242
243
	    case TOGGLE_CASE_KEY:
		TOGGLE(CASE_SENSITIVE);
		backupstring = mallocstrcpy(backupstring, answer);
		return 1;
	    case TOGGLE_BACKWARDS_KEY:
		TOGGLE(REVERSE_SEARCH);
		backupstring = mallocstrcpy(backupstring, answer);
		return 1;
244
#ifdef HAVE_REGEX_H
245
246
247
248
	    case TOGGLE_REGEXP_KEY:
		TOGGLE(USE_REGEXP);
		backupstring = mallocstrcpy(backupstring, answer);
		return 1;
249
#endif
Chris Allegretta's avatar
Chris Allegretta committed
250
#endif /* !NANO_SMALL */
251
252
253
254
	    case NANO_TOOTHERSEARCH_KEY:
		backupstring = mallocstrcpy(backupstring, answer);
		return -2;	/* Call the opposite search function. */
	    case NANO_TOGOTOLINE_KEY:
255
#ifndef NANO_SMALL
256
		search_history.current = search_history.next;
257
#endif
258
259
		do_gotolinecolumn(current->lineno, placewewant, TRUE,
			TRUE, FALSE);
260
261
				/* Put answer up on the statusbar and
				 * fall through. */
262
263
	    default:
		return -1;
Chris Allegretta's avatar
Chris Allegretta committed
264
	}
Chris Allegretta's avatar
Chris Allegretta committed
265
266
267
268
    }
    return 0;
}

269
bool is_whole_word(size_t pos, const char *buf, const char *word)
270
{
271
272
273
    char *p = charalloc(mb_cur_max()), *r = charalloc(mb_cur_max());
    size_t word_end = pos + strlen(word);
    bool retval;
274

275
276
277
278
279
280
281
282
283
    assert(buf != NULL && pos <= strlen(buf) && word != NULL);

    parse_mbchar(buf + move_mbleft(buf, pos), p, NULL, NULL);
    parse_mbchar(buf + word_end, r, NULL, NULL);

    /* If we're at the beginning of the line or the character before the
     * word isn't an alphanumeric character, and if we're at the end of
     * the line or the character after the word isn't an alphanumeric
     * character, we have a whole word. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
284
    retval = (pos == 0 || !is_alnum_mbchar(p)) &&
285
286
287
288
289
290
	(word_end == strlen(buf) || !is_alnum_mbchar(r));

    free(p);
    free(r);

    return retval;
291
292
}

293
294
295
/* Look for needle, starting at (current, current_x).  If no_sameline is
 * TRUE, skip over begin when looking for needle.  begin is the line
 * where we first started searching, at column beginx.  If
296
 * can_display_wrap is TRUE, we put messages on the statusbar, wrap
297
298
299
 * around the file boundaries.  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. */
300
301
bool findnextstr(bool can_display_wrap, bool wholeword, bool
	no_sameline, const filestruct *begin, size_t beginx, const char
302
	*needle, size_t *needle_len)
Chris Allegretta's avatar
Chris Allegretta committed
303
{
Chris Allegretta's avatar
Chris Allegretta committed
304
    filestruct *fileptr = current;
305
    const char *rev_start = NULL, *found = NULL;
306
307
    size_t found_len;
	/* The length of the match we found. */
308
    size_t current_x_find = 0;
309
	/* The location of the match we found. */
310
    int current_y_find = current_y;
311
312
313
314
315
316

    /* 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
317
    rev_start =
318
#ifndef NANO_SMALL
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
319
	ISSET(REVERSE_SEARCH) ? fileptr->data + (current_x - 1) :
320
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
321
	fileptr->data + (current_x + 1);
Chris Allegretta's avatar
Chris Allegretta committed
322

323
    /* Look for needle in searchstr. */
324
    while (TRUE) {
325
	found = strstrwrapper(fileptr->data, needle, rev_start);
Chris Allegretta's avatar
Chris Allegretta committed
326

327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
	/* We've found a potential match. */
	if (found != NULL) {
	    bool found_whole = FALSE;
		/* Is this potential match a whole word? */

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

	    /* If we're searching for whole words, see if this potential
	     * match is a whole word. */
	    if (wholeword) {
343
		char *word = mallocstrncpy(NULL, found, found_len + 1);
344
345
346
347
348
349
350
351
352
353
354
355
356
		word[found_len] = '\0';

		found_whole = is_whole_word(found - fileptr->data,
			fileptr->data, word);
		free(word);
	    }

	    /* 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. */
	    if ((!wholeword || found_whole) && (!no_sameline ||
		fileptr != current))
357
		break;
Chris Allegretta's avatar
Chris Allegretta committed
358
	}
359

360
	/* We've finished processing the file, so get out. */
361
362
	if (search_last_line) {
	    if (can_display_wrap)
Chris Allegretta's avatar
Chris Allegretta committed
363
		not_found_msg(needle);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
364
	    return FALSE;
365
	}
366
367
368
369
370
371
372
373
374

#ifndef NANO_SMALL
	if (ISSET(REVERSE_SEARCH)) {
	    fileptr = fileptr->prev;
	    current_y_find--;
	} else {
#endif
	    fileptr = fileptr->next;
	    current_y_find++;
375
#ifndef NANO_SMALL
376
	}
377
#endif
378

379
	/* Start or end of buffer reached, so wrap around. */
380
381
	if (fileptr == NULL) {
	    if (!can_display_wrap)
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
382
		return FALSE;
383

384
#ifndef NANO_SMALL
385
386
387
388
	    if (ISSET(REVERSE_SEARCH)) {
		fileptr = filebot;
		current_y_find = editwinrows - 1;
	    } else {
389
#endif
390
391
392
393
394
395
		fileptr = fileage;
		current_y_find = 0;
#ifndef NANO_SMALL
	    }
#endif

396
397
398
	    if (can_display_wrap)
		statusbar(_("Search Wrapped"));
	}
Chris Allegretta's avatar
Chris Allegretta committed
399

400
	/* Original start line reached. */
401
	if (fileptr == begin)
402
	    search_last_line = TRUE;
403

404
405
406
407
408
409
	rev_start = fileptr->data;
#ifndef NANO_SMALL
	if (ISSET(REVERSE_SEARCH))
	    rev_start += strlen(fileptr->data);
#endif
    }
410

411
412
    /* We found an instance. */
    current_x_find = found - fileptr->data;
Chris Allegretta's avatar
Chris Allegretta committed
413

414
415
416
417
418
419
420
421
422
    /* Ensure we haven't wrapped around again! */
    if (search_last_line &&
#ifndef NANO_SMALL
	((!ISSET(REVERSE_SEARCH) && current_x_find > beginx) ||
	(ISSET(REVERSE_SEARCH) && current_x_find < beginx))
#else
	current_x_find > beginx
#endif
	) {
Chris Allegretta's avatar
Chris Allegretta committed
423

424
425
	if (can_display_wrap)
	    not_found_msg(needle);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
426
	return FALSE;
Chris Allegretta's avatar
Chris Allegretta committed
427
428
    }

429
    /* Set globals now that we are sure we found something. */
430
431
    current = fileptr;
    current_x = current_x_find;
432
    current_y = current_y_find;
433
    placewewant = xplustabs();
434
435

    /* needle_len holds the length of needle. */
436
437
    if (needle_len != NULL)
	*needle_len = found_len;
438

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
439
    return TRUE;
Chris Allegretta's avatar
Chris Allegretta committed
440
441
}

442
443
444
445
446
void findnextstr_wrap_reset(void)
{
    search_last_line = FALSE;
}

Chris Allegretta's avatar
Chris Allegretta committed
447
/* Search for a string. */
448
void do_search(void)
Chris Allegretta's avatar
Chris Allegretta committed
449
{
450
    size_t old_pww = placewewant, fileptr_x = current_x;
451
452
    int i;
    bool didfind;
453
    filestruct *fileptr = current;
Chris Allegretta's avatar
Chris Allegretta committed
454

455
#ifndef DISABLE_WRAPPING
Chris Allegretta's avatar
Chris Allegretta committed
456
    wrap_reset();
457
#endif
458

459
    i = search_init(FALSE, FALSE);
460
461
    if (i == -1)	/* Cancel, Go to Line, blank search string, or
			 * regcomp() failed. */
Chris Allegretta's avatar
Chris Allegretta committed
462
	search_abort();
463
    else if (i == -2)	/* Replace. */
Chris Allegretta's avatar
Chris Allegretta committed
464
	do_replace();
465
466
467
#ifndef NANO_SMALL
    else if (i == 1)	/* Case Sensitive, Backwards, or Regexp search
			 * toggle. */
Chris Allegretta's avatar
Chris Allegretta committed
468
	do_search();
469
#endif
470

471
    if (i != 0)
472
	return;
473
474

    /* If answer is now "", copy last_search into answer. */
Chris Allegretta's avatar
Chris Allegretta committed
475
    if (answer[0] == '\0')
476
477
478
479
	answer = mallocstrcpy(answer, last_search);
    else
	last_search = mallocstrcpy(last_search, answer);

480
#ifndef NANO_SMALL
481
482
    /* If answer is not "", add this search string to the search history
     * list. */
Chris Allegretta's avatar
Chris Allegretta committed
483
    if (answer[0] != '\0')
484
	update_history(&search_history, answer);
485
#endif
486

487
    findnextstr_wrap_reset();
488
    didfind = findnextstr(TRUE, FALSE, FALSE, current, current_x,
489
	answer, NULL);
490

491
492
493
494
495
496
497
498
499
    /* Check to see if there's only one occurrence of the string and
     * we're on it now. */
    if (fileptr == current && fileptr_x == current_x && didfind) {
#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. */
500
501
	if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		last_search)) {
502
	    didfind = findnextstr(TRUE, FALSE, TRUE, current, current_x,
503
		answer, NULL);
504
505
506
507
508
509
510
511
512
	    if (fileptr == current && fileptr_x == current_x && !didfind)
		statusbar(_("This is the only occurrence"));
	} else {
#endif
	    statusbar(_("This is the only occurrence"));
#ifdef HAVE_REGEX_H
	}
#endif
    }
513

514
    placewewant = xplustabs();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
515
    edit_redraw(fileptr, old_pww);
Chris Allegretta's avatar
Chris Allegretta committed
516
517
518
    search_abort();
}

519
#ifndef NANO_SMALL
520
/* Search for the next string without prompting. */
521
void do_research(void)
522
{
523
    size_t old_pww = placewewant, fileptr_x = current_x;
524
    bool didfind;
525
    filestruct *fileptr = current;
526

527
#ifndef DISABLE_WRAPPING
528
    wrap_reset();
529
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
530

531
532
533
534
535
    search_init_globals();

    if (last_search[0] != '\0') {

#ifdef HAVE_REGEX_H
536
	/* Since answer is "", use last_search! */
537
	if (ISSET(USE_REGEXP) && regexp_init(last_search) == 0)
538
	    return;
539
540
#endif

541
	findnextstr_wrap_reset();
542
	didfind = findnextstr(TRUE, FALSE, FALSE, current, current_x,
543
		last_search, NULL);
544

545
546
547
548
549
550
551
552
553
	/* Check to see if there's only one occurrence of the string and
	 * we're on it now. */
	if (fileptr == current && fileptr_x == current_x && didfind) {
#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. */
554
555
	    if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		last_search)) {
556
		didfind = findnextstr(TRUE, FALSE, TRUE, current,
557
			current_x, answer, NULL);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
558
559
		if (fileptr == current && fileptr_x == current_x &&
			!didfind)
560
561
562
563
564
565
566
567
		    statusbar(_("This is the only occurrence"));
	    } else {
#endif
		statusbar(_("This is the only occurrence"));
#ifdef HAVE_REGEX_H
	    }
#endif
	}
568
569
570
    } else
        statusbar(_("No current search pattern"));

571
    placewewant = xplustabs();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
572
    edit_redraw(fileptr, old_pww);
573
574
    search_abort();
}
575
#endif
576

Chris Allegretta's avatar
Chris Allegretta committed
577
578
void replace_abort(void)
{
579
580
581
    /* Identical to search_abort(), so we'll call it here.  If it does
     * something different later, we can change it back.  For now, it's
     * just a waste to duplicate code. */
582
    search_abort();
583
    placewewant = xplustabs();
584
585
}

586
#ifdef HAVE_REGEX_H
587
int replace_regexp(char *string, bool create_flag)
588
{
589
    /* Split personality here - if create_flag is FALSE, just calculate
590
     * the size of the replacement line (necessary because of
591
     * subexpressions \1 to \9 in the replaced text). */
592

593
    const char *c = last_replace;
594
    int search_match_count = regmatches[0].rm_eo - regmatches[0].rm_so;
595
    int new_size = strlen(current->data) + 1 - search_match_count;
596

Chris Allegretta's avatar
Chris Allegretta committed
597
598
    /* Iterate through the replacement text to handle subexpression
     * replacement using \1, \2, \3, etc. */
599
    while (*c != '\0') {
600
601
	int num = (int)(*(c + 1) - '0');

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
602
603
	if (*c != '\\' || num < 1 || num > 9 ||
		num > search_regexp.re_nsub) {
604
605
606
607
608
	    if (create_flag)
		*string++ = *c;
	    c++;
	    new_size++;
	} else {
609
	    int i = regmatches[num].rm_eo - regmatches[num].rm_so;
610

611
612
	    /* Skip over the replacement expression. */
	    c += 2;
613

614
615
	    /* But add the length of the subexpression to new_size. */
	    new_size += i;
616

617
	    /* And if create_flag is TRUE, append the result of the
618
619
620
621
622
	     * subexpression match to the new line. */
	    if (create_flag) {
		strncpy(string, current->data + current_x +
			regmatches[num].rm_so, i);
		string += i;
623
624
	    }
	}
625
626
627
    }

    if (create_flag)
Chris Allegretta's avatar
Chris Allegretta committed
628
	*string = '\0';
629
630
631

    return new_size;
}
632
#endif
633

634
char *replace_line(const char *needle)
635
{
636
    char *copy;
637
638
639
    int new_line_size;
    int search_match_count;

640
    /* Calculate the size of the new line. */
641
#ifdef HAVE_REGEX_H
642
    if (ISSET(USE_REGEXP)) {
643
	search_match_count = regmatches[0].rm_eo - regmatches[0].rm_so;
644
	new_line_size = replace_regexp(NULL, 0);
645
    } else {
646
#endif
647
648
649
650
	search_match_count = strlen(needle);
	new_line_size = strlen(current->data) - search_match_count +
	    strlen(answer) + 1;
#ifdef HAVE_REGEX_H
651
    }
652
#endif
653

654
    /* Create the buffer. */
655
    copy = charalloc(new_line_size);
656

657
    /* The head of the original line. */
658
659
    strncpy(copy, current->data, current_x);

660
    /* The replacement text. */
661
#ifdef HAVE_REGEX_H
662
663
    if (ISSET(USE_REGEXP))
	replace_regexp(copy + current_x, TRUE);
664
    else
665
#endif
666
	strcpy(copy + current_x, answer);
667

668
669
670
    /* The tail of the original line. */
    assert(current_x + search_match_count <= strlen(current->data));
    strcat(copy, current->data + current_x + search_match_count);
671
672

    return copy;
Chris Allegretta's avatar
Chris Allegretta committed
673
674
}

675
/* Step through each replace word and prompt user before replacing.
676
677
678
 * 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.
679
680
 *
 * needle is the string to seek.  We replace it with answer.  Return -1
681
682
 * if needle isn't found, else the number of replacements performed.  If
 * canceled isn't NULL, set it to TRUE if we canceled. */
683
684
685
ssize_t do_replace_loop(const char *needle, const filestruct
	*real_current, size_t *real_current_x, bool wholewords, bool
	*canceled)
Chris Allegretta's avatar
Chris Allegretta committed
686
{
687
688
    ssize_t numreplaced = -1;
    size_t match_len;
689
    size_t pww_save = placewewant;
690
    bool replaceall = FALSE;
691
#ifdef HAVE_REGEX_H
692
    /* The starting-line match and bol/eol regex flags. */
693
    bool begin_line = FALSE, bol_or_eol = FALSE;
694
#endif
695
#ifndef NANO_SMALL
696
    bool old_mark_set = ISSET(MARK_ISSET);
697
698
699
700
701
    filestruct *edittop_save = edittop, *top, *bot;
    size_t top_x, bot_x;
    bool right_side_up = FALSE;
	/* TRUE if (mark_beginbuf, mark_beginx) is the top of the mark,
	 * FALSE if (current, current_x) is. */
Chris Allegretta's avatar
Chris Allegretta committed
702

703
    if (old_mark_set) {
704
	/* If the mark is on, partition the filestruct so that it
705
706
	 * contains only the marked text, set edittop to the top of the
	 * partition, turn the mark off, and refresh the screen. */
707
	mark_order((const filestruct **)&top, &top_x,
708
	    (const filestruct **)&bot, &bot_x, &right_side_up);
709
710
	filepart = partition_filestruct(top, top_x, bot, bot_x);
	edittop = fileage;
711
712
713
	UNSET(MARK_ISSET);
	edit_refresh();
    }
714
#endif
715

716
717
718
    if (canceled != NULL)
	*canceled = FALSE;

719
    findnextstr_wrap_reset();
720
    while (findnextstr(TRUE, wholewords,
721
#ifdef HAVE_REGEX_H
722
723
724
725
726
	/* 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
727
#else
728
	FALSE
729
#endif
730
	, real_current, *real_current_x, needle, &match_len)) {
731
732

	int i = 0;
733

734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
#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. */
	if (bol_or_eol && begin_line && current == real_current)
	    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 {
	    if (current == real_current)
		begin_line = TRUE;
	    bol_or_eol = FALSE;
	}
#endif

751
	if (!replaceall) {
752
	    edit_redraw(real_current, pww_save);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
753
	    pww_save = placewewant;
754
	}
Chris Allegretta's avatar
Chris Allegretta committed
755

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
756
757
	/* Record for the return value that we found the search
	 * string. */
758
759
	if (numreplaced == -1)
	    numreplaced = 0;
760

761
	if (!replaceall) {
762
763
764
765
	    char *exp_word;
	    size_t xpt = xplustabs();

	    exp_word = display_string(current->data, xpt,
766
767
		strnlenpt(current->data, match_len + current_x) - xpt,
		FALSE);
768

769
	    curs_set(0);
770
	    do_replace_highlight(TRUE, exp_word);
771

772
	    i = do_yesno(TRUE, _("Replace this instance?"));
Chris Allegretta's avatar
Chris Allegretta committed
773

774
775
	    do_replace_highlight(FALSE, exp_word);
	    free(exp_word);
776
	    curs_set(1);
777

778
779
780
	    if (i == -1) {	/* We canceled the replace. */
		if (canceled != NULL)
		    *canceled = TRUE;
781
		break;
782
	    }
783
784
	}

785
#ifdef HAVE_REGEX_H
786
	/* Set the bol_or_eol flag if we're doing a bol and/or eol regex
787
	 * replace ("^", "$", or "^$"). */
788
789
	if (ISSET(USE_REGEXP) && regexp_bol_or_eol(&search_regexp,
		needle))
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
790
	    bol_or_eol = TRUE;
791
792
#endif

793
	if (i > 0 || replaceall) {	/* Yes, replace it!!!! */
794
	    char *copy;
795
	    size_t length_change;
796

797
	    if (i == 2)
798
		replaceall = TRUE;
Chris Allegretta's avatar
Chris Allegretta committed
799

800
	    copy = replace_line(needle);
Chris Allegretta's avatar
Chris Allegretta committed
801

802
	    length_change = strlen(copy) - strlen(current->data);
Chris Allegretta's avatar
Chris Allegretta committed
803

804
#ifndef NANO_SMALL
805
806
807
808
	    /* If the mark was on and (mark_beginbuf, mark_begin_x) was
	     * the top of it, don't change mark_beginx. */
	    if (!old_mark_set || !right_side_up) {
		/* Keep mark_beginx in sync with the text changes. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
809
810
		if (current == mark_beginbuf &&
			mark_beginx > current_x) {
811
812
813
814
815
		    if (mark_beginx < current_x + match_len)
			mark_beginx = current_x;
		    else
			mark_beginx += length_change;
		}
816
	    }
Chris Allegretta's avatar
Chris Allegretta committed
817

818
819
820
	    /* 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) {
821
#endif
822
		/* Keep real_current_x in sync with the text changes. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
823
824
		if (current == real_current &&
			current_x <= *real_current_x) {
825
826
827
828
		    if (*real_current_x < current_x + match_len)
			*real_current_x = current_x + match_len;
		    *real_current_x += length_change;
		}
829
#ifndef NANO_SMALL
830
	    }
831
#endif
832

833
	    /* Set the cursor at the last character of the replacement
834
	     * text, so searching will resume after the replacement
835
836
	     * text.  Note that current_x might be set to (size_t)-1
	     * here. */
837
#ifndef NANO_SMALL
838
	    if (!ISSET(REVERSE_SEARCH))
839
840
#endif
		current_x += match_len + length_change - 1;
841

842
	    /* Cleanup. */
843
844
845
	    totsize += length_change;
	    free(current->data);
	    current->data = copy;
846

847
848
	    if (!replaceall) {
#ifdef ENABLE_COLOR
849
		if (!ISSET(NO_COLOR_SYNTAX))
850
851
852
853
854
855
		    edit_refresh();
		else
#endif
		    update_line(current, current_x);
	    }

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_SMALL
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
	edittop = edittop_save;
868
	SET(MARK_ISSET);
869
870
	edit_refresh();
    }
871
872
#endif

873
874
875
876
    /* If text has been added to the magicline, make a new magicline. */
    if (filebot->data[0] != '\0')
	new_magicline();

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

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

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

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

    if (i != 0)
907
	return;
Chris Allegretta's avatar
Chris Allegretta committed
908

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

918
#ifndef NANO_SMALL
919
920
    replace_history.current = (historytype *)&replace_history.next;
    last_replace = mallocstrcpy(last_replace, "");
921
#endif
922

923
    i = statusq(FALSE, replace_list_2, last_replace,
924
#ifndef NANO_SMALL
925
	&replace_history,
926
#endif
927
	_("Replace with"));
928

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

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

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

948
    /* Save where we are. */
949
    edittop_save = edittop;
Chris Allegretta's avatar
Chris Allegretta committed
950
    begin = current;
951
    beginx = current_x;
952
    pww_save = placewewant;
Chris Allegretta's avatar
Chris Allegretta committed
953

954
955
    numreplaced = do_replace_loop(last_search, begin, &beginx, FALSE,
	NULL);
Chris Allegretta's avatar
Chris Allegretta committed
956

957
    /* Restore where we were. */
958
    edittop = edittop_save;
Chris Allegretta's avatar
Chris Allegretta committed
959
    current = begin;
960
    current_x = beginx;
961
    placewewant = pww_save;
962

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

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

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

973
974
void do_gotolinecolumn(int line, ssize_t column, bool use_answer, bool
	interactive, bool save_pos)
Chris Allegretta's avatar
Chris Allegretta committed
975
{
976
    if (interactive) {		/* Ask for it. */
977
	char *ans = mallocstrcpy(NULL, answer);
978
	int i = statusq(FALSE, gotoline_list, use_answer ? ans : "",
Chris Allegretta's avatar
Chris Allegretta committed
979
#ifndef NANO_SMALL
980
		NULL,
Chris Allegretta's avatar
Chris Allegretta committed
981
#endif
982
		_("Enter line number, column number"));
983
984

	free(ans);
Chris Allegretta's avatar
Chris Allegretta committed
985
986

	/* Cancel, or Enter with blank string. */
987
	if (i < 0) {
988
	    statusbar(_("Cancelled"));
989
	    display_main_list();
990
991
992
	    return;
	}

993
	if (i == NANO_TOOTHERWHEREIS_KEY) {
994
995
996
	    /* Keep answer up on the statusbar. */
	    search_init(TRUE, TRUE);

997
	    do_search();
998
	    return;
Chris Allegretta's avatar
Chris Allegretta committed
999
	}
1000

1001
	/* Do a bounds check.  Display a warning on an out-of-bounds
1002
1003
1004
	 * line number (which is one-based) or an out-of-bounds column
	 * number (which is zero-based) only if we hit Enter at the
	 * statusbar prompt. */
1005
	if (!parse_line_column(answer, &line, &column) || line < 1 ||
1006
		column < 0) {
1007
1008
	    if (i == 0)
		statusbar(_("Come on, be reasonable"));
Chris Allegretta's avatar
Chris Allegretta committed
1009
	    display_main_list();
1010
	    return;
Chris Allegretta's avatar
Chris Allegretta committed
1011
	}
1012
1013
    } else {
	if (line < 1)
1014
	    line = current->lineno;
1015

1016
	if (column < 0)
1017
	    column = placewewant;
Chris Allegretta's avatar
Chris Allegretta committed
1018
1019
    }

1020
1021
    for (current = fileage; current->next != NULL && line > 1; line--)
	current = current->next;
Chris Allegretta's avatar
Chris Allegretta committed
1022

1023
1024
    current_x = actual_x(current->data, column);
    placewewant = column;
1025

1026
    /* If save_pos is TRUE, don't change the cursor position when
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1027
     * updating the edit window. */
1028
    edit_update(save_pos ? NONE : CENTER);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1029

Chris Allegretta's avatar
Chris Allegretta committed
1030
    display_main_list();
Chris Allegretta's avatar
Chris Allegretta committed
1031
1032
}

1033
void do_gotolinecolumn_void(void)
Chris Allegretta's avatar
Chris Allegretta committed
1034
{
1035
    do_gotolinecolumn(current->lineno, placewewant, FALSE, TRUE, FALSE);
Chris Allegretta's avatar
Chris Allegretta committed
1036
}
1037

1038
#if defined(ENABLE_MULTIBUFFER) || !defined(DISABLE_SPELLER)
1039
void do_gotopos(int line, size_t pos_x, int pos_y, size_t pos_pww)
1040
{
1041
    /* Since do_gotolinecolumn() resets the x-coordinate but not the
1042
     * y-coordinate, set the coordinates up this way. */
1043
    current_y = pos_y;
1044
    do_gotolinecolumn(line, pos_x, FALSE, FALSE, TRUE);
1045

1046
    /* Set the rest of the coordinates up. */
1047
    placewewant = pos_pww;
1048
1049
1050
    update_line(current, pos_x);
}
#endif
1051
1052

#if !defined(NANO_SMALL) && defined(HAVE_REGEX_H)
1053
void do_find_bracket(void)
1054
1055
{
    char ch_under_cursor, wanted_ch;
1056
    const char *pos, *brackets = "([{<>}])";
1057
    char regexp_pat[] = "[  ]";
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1058
    size_t current_x_save, pww_save;
1059
    int count = 1;
1060
    unsigned long flags_save;
1061
1062
1063
    filestruct *current_save;

    ch_under_cursor = current->data[current_x];
1064

1065
1066
    pos = strchr(brackets, ch_under_cursor);
    if (ch_under_cursor == '\0' || pos == NULL) {
1067
	statusbar(_("Not a bracket"));
1068
	return;
1069
1070
    }

1071
    assert(strlen(brackets) % 2 == 0);
1072

1073
    wanted_ch = brackets[(strlen(brackets) - 1) - (pos - brackets)];
1074
1075

    current_save = current;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1076
    current_x_save = current_x;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1077
    pww_save = placewewant;
1078
    flags_save = flags;
1079
1080
    SET(USE_REGEXP);

1081
1082
    /* Apparent near redundancy with regexp_pat[] here is needed.
     * "[][]" works, "[[]]" doesn't. */
1083
1084
    if (pos < brackets + (strlen(brackets) / 2)) {
	/* On a left bracket. */
1085
1086
1087
	regexp_pat[1] = wanted_ch;
	regexp_pat[2] = ch_under_cursor;
	UNSET(REVERSE_SEARCH);
1088
1089
    } else {
	/* On a right bracket. */
1090
1091
1092
1093
1094
1095
	regexp_pat[1] = ch_under_cursor;
	regexp_pat[2] = wanted_ch;
	SET(REVERSE_SEARCH);
    }

    regexp_init(regexp_pat);
1096

1097
    /* We constructed regexp_pat to be a valid expression. */
1098
    assert(regexp_compiled);
1099

1100
    findnextstr_wrap_reset();
1101
    while (TRUE) {
1102
	if (findnextstr(FALSE, FALSE, FALSE, current, current_x,
1103
		regexp_pat, NULL)) {
1104
	    /* Found identical bracket. */
Chris Allegretta's avatar
Chris Allegretta committed
1105
	    if (current->data[current_x] == ch_under_cursor)
1106
		count++;
1107
1108
1109
	    /* Found complementary bracket. */
	    else if (--count == 0) {
		placewewant = xplustabs();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1110
		edit_redraw(current_save, pww_save);
1111
		break;
1112
	    }
Chris Allegretta's avatar
Chris Allegretta committed
1113
	} else {
1114
	    /* Didn't find either a left or right bracket. */
1115
1116
	    statusbar(_("No matching bracket"));
	    current = current_save;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1117
	    current_x = current_x_save;
Chris Allegretta's avatar
Chris Allegretta committed
1118
	    update_line(current, current_x);
1119
1120
1121
1122
	    break;
	}
    }

1123
    regexp_cleanup();
1124
    flags = flags_save;
1125
1126
}
#endif
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151

#ifndef NANO_SMALL
/*
 * search and replace history list support functions
 */

/* initialize search and replace history lists */
void history_init(void)
{
    search_history.next = (historytype *)&search_history.prev;
    search_history.prev = NULL;
    search_history.tail = (historytype *)&search_history.next;
    search_history.current = search_history.next;
    search_history.count = 0;
    search_history.len = 0;

    replace_history.next = (historytype *)&replace_history.prev;
    replace_history.prev = NULL;
    replace_history.tail = (historytype *)&replace_history.next;
    replace_history.current = replace_history.next;
    replace_history.count = 0;
    replace_history.len = 0;
}

/* find first node containing string *s in history list *h */
1152
historytype *find_node(historytype *h, const char *s)
1153
{
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1154
    for (; h->next != NULL; h = h->next) {
1155
1156
	if (strcmp(s, h->data) == 0)
	    return h;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1157
    }
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
    return NULL;
}

/* remove node *r */
void remove_node(historytype *r)
{
    r->prev->next = r->next;
    r->next->prev = r->prev;
    free(r->data);
    free(r);
}

/* add a node after node *h */
void insert_node(historytype *h, const char *s)
{
    historytype *a;

David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
1175
    a = (historytype *)nmalloc(sizeof(historytype));
1176
    a->next = h->next;
1177
    a->prev = h;
1178
1179
1180
1181
1182
1183
    h->next->prev = a;
    h->next = a;
    a->data = mallocstrcpy(NULL, s);
}

/* update history list */
1184
void update_history(historyheadtype *h, const char *s)
1185
1186
1187
{
    historytype *p;

Chris Allegretta's avatar
Chris Allegretta committed
1188
1189
1190
    if ((p = find_node(h->next, s)) != NULL) {
	if (p == h->next)		/* catch delete and re-insert of
					   same string in 1st node */
1191
	    goto up_hs;
Chris Allegretta's avatar
Chris Allegretta committed
1192
	remove_node(p);			/* delete identical older string */
1193
1194
1195
1196
1197
1198
1199
1200
	h->count--;
    }
    if (h->count == MAX_SEARCH_HISTORY) {	/* list 'full', delete oldest */
	remove_node(h->tail);
	h->count--;
    }
    insert_node((historytype *)h, s);
    h->count++;
1201
    SET(HISTORY_CHANGED);
Chris Allegretta's avatar
Chris Allegretta committed
1202
  up_hs:
1203
1204
1205
1206
1207
1208
    h->current = h->next;
}

/* return a pointer to either the next older history or NULL if no more */
char *get_history_older(historyheadtype *h)
{
Chris Allegretta's avatar
Chris Allegretta committed
1209
    if (h->current->next != NULL) {	/* any older entries? */
1210
1211
1212
1213
1214
1215
1216
1217
	h->current = h->current->next;	/* yes */
	return h->current->data;	/* return it */
    }
    return NULL;			/* end of list */
}

char *get_history_newer(historyheadtype *h)
{
Chris Allegretta's avatar
Chris Allegretta committed
1218
    if (h->current->prev != NULL) {
1219
	h->current = h->current->prev;
1220
1221
	if (h->current->prev != NULL)
	    return h->current->data;
1222
1223
1224
1225
1226
1227
1228
1229
1230
    }
    return NULL;
}

/* get a completion */
char *get_history_completion(historyheadtype *h, char *s)
{
    historytype *p;

Chris Allegretta's avatar
Chris Allegretta committed
1231
1232
    for (p = h->current->next; p->next != NULL; p = p->next) {
	if (strncmp(s, p->data, h->len) == 0 && strlen(p->data) != h->len) {
1233
1234
1235
1236
	    h->current = p;
	    return p->data;
	}
    }
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1237
    h->current = (historytype *)h;
1238
1239
1240
1241
    null_at(&s, h->len);
    return s;
}

1242
#ifdef DEBUG
1243
1244
1245
/* free a history list */
void free_history(historyheadtype *h)
{
1246
    historytype *p;
1247

1248
    for (p = h->next; p->next != NULL; p = p->next)
1249
1250
	remove_node(p);
}
1251
#endif
1252
1253
1254

/* end of history support functions */
#endif /* !NANO_SMALL */