Home | History | Annotate | Line # | Download | only in libedit
search.c revision 1.30
      1  1.30  christos /*	$NetBSD: search.c,v 1.30 2011/10/04 15:27:04 christos Exp $	*/
      2   1.3     lukem 
      3   1.1       cgd /*-
      4   1.1       cgd  * Copyright (c) 1992, 1993
      5   1.1       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * This code is derived from software contributed to Berkeley by
      8   1.1       cgd  * Christos Zoulas of Cornell University.
      9   1.1       cgd  *
     10   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     11   1.1       cgd  * modification, are permitted provided that the following conditions
     12   1.1       cgd  * are met:
     13   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     14   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     15   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     17   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     18  1.15       agc  * 3. Neither the name of the University nor the names of its contributors
     19   1.1       cgd  *    may be used to endorse or promote products derived from this software
     20   1.1       cgd  *    without specific prior written permission.
     21   1.1       cgd  *
     22   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32   1.1       cgd  * SUCH DAMAGE.
     33   1.1       cgd  */
     34   1.1       cgd 
     35  1.12  christos #include "config.h"
     36   1.1       cgd #if !defined(lint) && !defined(SCCSID)
     37   1.3     lukem #if 0
     38   1.1       cgd static char sccsid[] = "@(#)search.c	8.1 (Berkeley) 6/4/93";
     39   1.3     lukem #else
     40  1.30  christos __RCSID("$NetBSD: search.c,v 1.30 2011/10/04 15:27:04 christos Exp $");
     41   1.3     lukem #endif
     42   1.1       cgd #endif /* not lint && not SCCSID */
     43   1.1       cgd 
     44   1.1       cgd /*
     45   1.1       cgd  * search.c: History and character search functions
     46   1.1       cgd  */
     47   1.1       cgd #include <stdlib.h>
     48   1.2       jtc #if defined(REGEX)
     49   1.2       jtc #include <regex.h>
     50   1.2       jtc #elif defined(REGEXP)
     51   1.1       cgd #include <regexp.h>
     52   1.1       cgd #endif
     53   1.1       cgd #include "el.h"
     54   1.1       cgd 
     55   1.1       cgd /*
     56   1.1       cgd  * Adjust cursor in vi mode to include the character under it
     57   1.1       cgd  */
     58   1.9     lukem #define	EL_CURSOR(el) \
     59   1.1       cgd     ((el)->el_line.cursor + (((el)->el_map.type == MAP_VI) && \
     60   1.1       cgd 			    ((el)->el_map.current == (el)->el_map.alt)))
     61   1.1       cgd 
     62   1.1       cgd /* search_init():
     63   1.1       cgd  *	Initialize the search stuff
     64   1.1       cgd  */
     65   1.1       cgd protected int
     66   1.9     lukem search_init(EditLine *el)
     67   1.1       cgd {
     68   1.9     lukem 
     69  1.22  christos 	el->el_search.patbuf = el_malloc(EL_BUFSIZ *
     70  1.22  christos 	    sizeof(*el->el_search.patbuf));
     71  1.10  christos 	if (el->el_search.patbuf == NULL)
     72  1.27  christos 		return -1;
     73   1.9     lukem 	el->el_search.patlen = 0;
     74   1.9     lukem 	el->el_search.patdir = -1;
     75   1.9     lukem 	el->el_search.chacha = '\0';
     76  1.13  christos 	el->el_search.chadir = CHAR_FWD;
     77  1.13  christos 	el->el_search.chatflg = 0;
     78  1.27  christos 	return 0;
     79   1.1       cgd }
     80   1.1       cgd 
     81   1.1       cgd 
     82   1.1       cgd /* search_end():
     83   1.1       cgd  *	Initialize the search stuff
     84   1.1       cgd  */
     85   1.1       cgd protected void
     86   1.9     lukem search_end(EditLine *el)
     87   1.1       cgd {
     88   1.9     lukem 
     89  1.26  christos 	el_free(el->el_search.patbuf);
     90   1.9     lukem 	el->el_search.patbuf = NULL;
     91   1.1       cgd }
     92   1.1       cgd 
     93   1.9     lukem 
     94   1.1       cgd #ifdef REGEXP
     95   1.1       cgd /* regerror():
     96   1.1       cgd  *	Handle regular expression errors
     97   1.1       cgd  */
     98   1.8    simonb public void
     99   1.1       cgd /*ARGSUSED*/
    100   1.9     lukem regerror(const char *msg)
    101   1.1       cgd {
    102   1.1       cgd }
    103   1.1       cgd #endif
    104   1.1       cgd 
    105   1.9     lukem 
    106   1.1       cgd /* el_match():
    107   1.1       cgd  *	Return if string matches pattern
    108   1.1       cgd  */
    109   1.1       cgd protected int
    110  1.22  christos el_match(const Char *str, const Char *pat)
    111   1.1       cgd {
    112  1.22  christos #ifdef WIDECHAR
    113  1.23  christos 	static ct_buffer_t conv;
    114  1.22  christos #endif
    115   1.2       jtc #if defined (REGEX)
    116   1.9     lukem 	regex_t re;
    117   1.9     lukem 	int rv;
    118   1.2       jtc #elif defined (REGEXP)
    119   1.9     lukem 	regexp *rp;
    120   1.9     lukem 	int rv;
    121   1.8    simonb #else
    122   1.9     lukem 	extern char	*re_comp(const char *);
    123   1.9     lukem 	extern int	 re_exec(const char *);
    124   1.1       cgd #endif
    125   1.1       cgd 
    126  1.22  christos 	if (Strstr(str, pat) != 0)
    127  1.27  christos 		return 1;
    128   1.2       jtc 
    129   1.2       jtc #if defined(REGEX)
    130  1.22  christos 	if (regcomp(&re, ct_encode_string(pat, &conv), 0) == 0) {
    131  1.28  christos 		rv = regexec(&re, ct_encode_string(str, &conv), (size_t)0, NULL,
    132  1.28  christos 		    0) == 0;
    133   1.9     lukem 		regfree(&re);
    134   1.9     lukem 	} else {
    135   1.9     lukem 		rv = 0;
    136   1.9     lukem 	}
    137  1.27  christos 	return rv;
    138   1.2       jtc #elif defined(REGEXP)
    139  1.22  christos 	if ((re = regcomp(ct_encode_string(pat, &conv))) != NULL) {
    140  1.22  christos 		rv = regexec(re, ct_encode_string(str, &conv));
    141  1.26  christos 		el_free(re);
    142   1.9     lukem 	} else {
    143   1.9     lukem 		rv = 0;
    144   1.9     lukem 	}
    145  1.27  christos 	return rv;
    146   1.2       jtc #else
    147  1.22  christos 	if (re_comp(ct_encode_string(pat, &conv)) != NULL)
    148  1.27  christos 		return 0;
    149   1.9     lukem 	else
    150  1.27  christos 		return re_exec(ct_encode_string(str, &conv) == 1);
    151   1.1       cgd #endif
    152   1.1       cgd }
    153   1.1       cgd 
    154   1.1       cgd 
    155   1.1       cgd /* c_hmatch():
    156   1.1       cgd  *	 return True if the pattern matches the prefix
    157   1.1       cgd  */
    158   1.1       cgd protected int
    159  1.22  christos c_hmatch(EditLine *el, const Char *str)
    160   1.1       cgd {
    161   1.1       cgd #ifdef SDEBUG
    162   1.9     lukem 	(void) fprintf(el->el_errfile, "match `%s' with `%s'\n",
    163   1.9     lukem 	    el->el_search.patbuf, str);
    164   1.1       cgd #endif /* SDEBUG */
    165   1.8    simonb 
    166  1.27  christos 	return el_match(str, el->el_search.patbuf);
    167   1.1       cgd }
    168   1.1       cgd 
    169   1.1       cgd 
    170   1.8    simonb /* c_setpat():
    171   1.1       cgd  *	Set the history seatch pattern
    172   1.1       cgd  */
    173   1.1       cgd protected void
    174   1.9     lukem c_setpat(EditLine *el)
    175   1.1       cgd {
    176   1.9     lukem 	if (el->el_state.lastcmd != ED_SEARCH_PREV_HISTORY &&
    177   1.9     lukem 	    el->el_state.lastcmd != ED_SEARCH_NEXT_HISTORY) {
    178  1.29  christos 		el->el_search.patlen =
    179  1.29  christos 		    (size_t)(EL_CURSOR(el) - el->el_line.buffer);
    180   1.9     lukem 		if (el->el_search.patlen >= EL_BUFSIZ)
    181   1.9     lukem 			el->el_search.patlen = EL_BUFSIZ - 1;
    182   1.9     lukem 		if (el->el_search.patlen != 0) {
    183  1.22  christos 			(void) Strncpy(el->el_search.patbuf, el->el_line.buffer,
    184   1.9     lukem 			    el->el_search.patlen);
    185   1.9     lukem 			el->el_search.patbuf[el->el_search.patlen] = '\0';
    186   1.9     lukem 		} else
    187  1.22  christos 			el->el_search.patlen = Strlen(el->el_search.patbuf);
    188   1.1       cgd 	}
    189   1.1       cgd #ifdef SDEBUG
    190   1.9     lukem 	(void) fprintf(el->el_errfile, "\neventno = %d\n",
    191   1.9     lukem 	    el->el_history.eventno);
    192   1.9     lukem 	(void) fprintf(el->el_errfile, "patlen = %d\n", el->el_search.patlen);
    193   1.9     lukem 	(void) fprintf(el->el_errfile, "patbuf = \"%s\"\n",
    194   1.9     lukem 	    el->el_search.patbuf);
    195   1.9     lukem 	(void) fprintf(el->el_errfile, "cursor %d lastchar %d\n",
    196   1.9     lukem 	    EL_CURSOR(el) - el->el_line.buffer,
    197   1.9     lukem 	    el->el_line.lastchar - el->el_line.buffer);
    198   1.1       cgd #endif
    199   1.1       cgd }
    200   1.1       cgd 
    201   1.1       cgd 
    202   1.1       cgd /* ce_inc_search():
    203   1.1       cgd  *	Emacs incremental search
    204   1.1       cgd  */
    205   1.1       cgd protected el_action_t
    206   1.9     lukem ce_inc_search(EditLine *el, int dir)
    207   1.9     lukem {
    208  1.22  christos 	static const Char STRfwd[] = {'f', 'w', 'd', '\0'},
    209   1.9     lukem 	     STRbck[] = {'b', 'c', 'k', '\0'};
    210  1.22  christos 	static Char pchar = ':';/* ':' = normal, '?' = failed */
    211  1.22  christos 	static Char endcmd[2] = {'\0', '\0'};
    212  1.22  christos 	Char ch, *ocursor = el->el_line.cursor, oldpchar = pchar;
    213  1.22  christos 	const Char *cp;
    214   1.9     lukem 
    215   1.9     lukem 	el_action_t ret = CC_NORM;
    216   1.9     lukem 
    217   1.9     lukem 	int ohisteventno = el->el_history.eventno;
    218  1.21  christos 	size_t oldpatlen = el->el_search.patlen;
    219   1.9     lukem 	int newdir = dir;
    220   1.9     lukem 	int done, redo;
    221   1.9     lukem 
    222  1.22  christos 	if (el->el_line.lastchar + sizeof(STRfwd) /
    223  1.22  christos 	    sizeof(*el->el_line.lastchar) + 2 +
    224   1.9     lukem 	    el->el_search.patlen >= el->el_line.limit)
    225  1.27  christos 		return CC_ERROR;
    226   1.1       cgd 
    227   1.9     lukem 	for (;;) {
    228   1.1       cgd 
    229   1.9     lukem 		if (el->el_search.patlen == 0) {	/* first round */
    230   1.9     lukem 			pchar = ':';
    231   1.1       cgd #ifdef ANCHOR
    232  1.16  christos #define	LEN	2
    233   1.9     lukem 			el->el_search.patbuf[el->el_search.patlen++] = '.';
    234   1.9     lukem 			el->el_search.patbuf[el->el_search.patlen++] = '*';
    235  1.16  christos #else
    236  1.16  christos #define	LEN	0
    237   1.1       cgd #endif
    238   1.9     lukem 		}
    239   1.9     lukem 		done = redo = 0;
    240   1.9     lukem 		*el->el_line.lastchar++ = '\n';
    241  1.11  jdolecek 		for (cp = (newdir == ED_SEARCH_PREV_HISTORY) ? STRbck : STRfwd;
    242   1.9     lukem 		    *cp; *el->el_line.lastchar++ = *cp++)
    243   1.9     lukem 			continue;
    244   1.9     lukem 		*el->el_line.lastchar++ = pchar;
    245  1.16  christos 		for (cp = &el->el_search.patbuf[LEN];
    246   1.9     lukem 		    cp < &el->el_search.patbuf[el->el_search.patlen];
    247   1.9     lukem 		    *el->el_line.lastchar++ = *cp++)
    248   1.9     lukem 			continue;
    249   1.1       cgd 		*el->el_line.lastchar = '\0';
    250   1.1       cgd 		re_refresh(el);
    251   1.1       cgd 
    252  1.22  christos 		if (FUN(el,getc)(el, &ch) != 1)
    253  1.27  christos 			return ed_end_of_file(el, 0);
    254   1.1       cgd 
    255   1.9     lukem 		switch (el->el_map.current[(unsigned char) ch]) {
    256   1.9     lukem 		case ED_INSERT:
    257   1.9     lukem 		case ED_DIGIT:
    258  1.16  christos 			if (el->el_search.patlen >= EL_BUFSIZ - LEN)
    259  1.25  christos 				terminal_beep(el);
    260   1.9     lukem 			else {
    261   1.9     lukem 				el->el_search.patbuf[el->el_search.patlen++] =
    262   1.9     lukem 				    ch;
    263   1.9     lukem 				*el->el_line.lastchar++ = ch;
    264   1.9     lukem 				*el->el_line.lastchar = '\0';
    265   1.9     lukem 				re_refresh(el);
    266   1.1       cgd 			}
    267   1.1       cgd 			break;
    268   1.9     lukem 
    269   1.9     lukem 		case EM_INC_SEARCH_NEXT:
    270   1.9     lukem 			newdir = ED_SEARCH_NEXT_HISTORY;
    271   1.9     lukem 			redo++;
    272   1.9     lukem 			break;
    273   1.9     lukem 
    274   1.9     lukem 		case EM_INC_SEARCH_PREV:
    275   1.9     lukem 			newdir = ED_SEARCH_PREV_HISTORY;
    276   1.9     lukem 			redo++;
    277   1.9     lukem 			break;
    278   1.9     lukem 
    279  1.20  christos 		case EM_DELETE_PREV_CHAR:
    280   1.9     lukem 		case ED_DELETE_PREV_CHAR:
    281  1.16  christos 			if (el->el_search.patlen > LEN)
    282   1.9     lukem 				done++;
    283   1.9     lukem 			else
    284  1.25  christos 				terminal_beep(el);
    285   1.1       cgd 			break;
    286   1.8    simonb 
    287   1.9     lukem 		default:
    288   1.9     lukem 			switch (ch) {
    289   1.9     lukem 			case 0007:	/* ^G: Abort */
    290   1.9     lukem 				ret = CC_ERROR;
    291   1.9     lukem 				done++;
    292   1.9     lukem 				break;
    293   1.9     lukem 
    294   1.9     lukem 			case 0027:	/* ^W: Append word */
    295   1.9     lukem 			/* No can do if globbing characters in pattern */
    296  1.16  christos 				for (cp = &el->el_search.patbuf[LEN];; cp++)
    297  1.16  christos 				    if (cp >= &el->el_search.patbuf[
    298  1.16  christos 					el->el_search.patlen]) {
    299   1.9     lukem 					el->el_line.cursor +=
    300  1.16  christos 					    el->el_search.patlen - LEN - 1;
    301   1.9     lukem 					cp = c__next_word(el->el_line.cursor,
    302   1.9     lukem 					    el->el_line.lastchar, 1,
    303   1.9     lukem 					    ce__isword);
    304   1.9     lukem 					while (el->el_line.cursor < cp &&
    305   1.9     lukem 					    *el->el_line.cursor != '\n') {
    306  1.16  christos 						if (el->el_search.patlen >=
    307  1.16  christos 						    EL_BUFSIZ - LEN) {
    308  1.25  christos 							terminal_beep(el);
    309   1.9     lukem 							break;
    310   1.9     lukem 						}
    311   1.9     lukem 						el->el_search.patbuf[el->el_search.patlen++] =
    312   1.9     lukem 						    *el->el_line.cursor;
    313   1.9     lukem 						*el->el_line.lastchar++ =
    314   1.9     lukem 						    *el->el_line.cursor++;
    315   1.9     lukem 					}
    316   1.9     lukem 					el->el_line.cursor = ocursor;
    317   1.9     lukem 					*el->el_line.lastchar = '\0';
    318   1.9     lukem 					re_refresh(el);
    319   1.9     lukem 					break;
    320   1.9     lukem 				    } else if (isglob(*cp)) {
    321  1.25  christos 					    terminal_beep(el);
    322   1.9     lukem 					    break;
    323   1.9     lukem 				    }
    324   1.9     lukem 				break;
    325   1.9     lukem 
    326   1.9     lukem 			default:	/* Terminate and execute cmd */
    327   1.9     lukem 				endcmd[0] = ch;
    328  1.22  christos 				FUN(el,push)(el, endcmd);
    329   1.9     lukem 				/* FALLTHROUGH */
    330   1.9     lukem 
    331   1.9     lukem 			case 0033:	/* ESC: Terminate */
    332   1.9     lukem 				ret = CC_REFRESH;
    333   1.9     lukem 				done++;
    334   1.9     lukem 				break;
    335   1.9     lukem 			}
    336   1.9     lukem 			break;
    337   1.1       cgd 		}
    338   1.1       cgd 
    339   1.9     lukem 		while (el->el_line.lastchar > el->el_line.buffer &&
    340   1.9     lukem 		    *el->el_line.lastchar != '\n')
    341   1.9     lukem 			*el->el_line.lastchar-- = '\0';
    342   1.9     lukem 		*el->el_line.lastchar = '\0';
    343   1.1       cgd 
    344   1.9     lukem 		if (!done) {
    345   1.1       cgd 
    346   1.9     lukem 			/* Can't search if unmatched '[' */
    347   1.9     lukem 			for (cp = &el->el_search.patbuf[el->el_search.patlen-1],
    348   1.9     lukem 			    ch = ']';
    349  1.16  christos 			    cp >= &el->el_search.patbuf[LEN];
    350   1.9     lukem 			    cp--)
    351   1.9     lukem 				if (*cp == '[' || *cp == ']') {
    352   1.9     lukem 					ch = *cp;
    353   1.9     lukem 					break;
    354   1.9     lukem 				}
    355  1.16  christos 			if (el->el_search.patlen > LEN && ch != '[') {
    356   1.9     lukem 				if (redo && newdir == dir) {
    357   1.9     lukem 					if (pchar == '?') { /* wrap around */
    358   1.9     lukem 						el->el_history.eventno =
    359   1.9     lukem 						    newdir == ED_SEARCH_PREV_HISTORY ? 0 : 0x7fffffff;
    360   1.9     lukem 						if (hist_get(el) == CC_ERROR)
    361   1.9     lukem 							/* el->el_history.event
    362   1.9     lukem 							 * no was fixed by
    363   1.9     lukem 							 * first call */
    364   1.9     lukem 							(void) hist_get(el);
    365   1.9     lukem 						el->el_line.cursor = newdir ==
    366   1.9     lukem 						    ED_SEARCH_PREV_HISTORY ?
    367   1.9     lukem 						    el->el_line.lastchar :
    368   1.9     lukem 						    el->el_line.buffer;
    369   1.9     lukem 					} else
    370   1.9     lukem 						el->el_line.cursor +=
    371   1.9     lukem 						    newdir ==
    372   1.9     lukem 						    ED_SEARCH_PREV_HISTORY ?
    373   1.9     lukem 						    -1 : 1;
    374   1.9     lukem 				}
    375   1.9     lukem #ifdef ANCHOR
    376   1.9     lukem 				el->el_search.patbuf[el->el_search.patlen++] =
    377   1.9     lukem 				    '.';
    378   1.9     lukem 				el->el_search.patbuf[el->el_search.patlen++] =
    379   1.9     lukem 				    '*';
    380   1.9     lukem #endif
    381   1.9     lukem 				el->el_search.patbuf[el->el_search.patlen] =
    382   1.9     lukem 				    '\0';
    383   1.9     lukem 				if (el->el_line.cursor < el->el_line.buffer ||
    384   1.9     lukem 				    el->el_line.cursor > el->el_line.lastchar ||
    385  1.18  christos 				    (ret = ce_search_line(el, newdir))
    386  1.18  christos 				    == CC_ERROR) {
    387   1.9     lukem 					/* avoid c_setpat */
    388   1.9     lukem 					el->el_state.lastcmd =
    389   1.9     lukem 					    (el_action_t) newdir;
    390  1.29  christos 					ret = (el_action_t)
    391  1.29  christos 					    (newdir == ED_SEARCH_PREV_HISTORY ?
    392   1.9     lukem 					    ed_search_prev_history(el, 0) :
    393  1.29  christos 					    ed_search_next_history(el, 0));
    394   1.9     lukem 					if (ret != CC_ERROR) {
    395   1.9     lukem 						el->el_line.cursor = newdir ==
    396   1.9     lukem 						    ED_SEARCH_PREV_HISTORY ?
    397   1.9     lukem 						    el->el_line.lastchar :
    398   1.9     lukem 						    el->el_line.buffer;
    399   1.9     lukem 						(void) ce_search_line(el,
    400   1.9     lukem 						    newdir);
    401   1.9     lukem 					}
    402   1.9     lukem 				}
    403  1.16  christos 				el->el_search.patlen -= LEN;
    404  1.16  christos 				el->el_search.patbuf[el->el_search.patlen] =
    405   1.9     lukem 				    '\0';
    406   1.9     lukem 				if (ret == CC_ERROR) {
    407  1.25  christos 					terminal_beep(el);
    408   1.9     lukem 					if (el->el_history.eventno !=
    409   1.9     lukem 					    ohisteventno) {
    410   1.9     lukem 						el->el_history.eventno =
    411   1.9     lukem 						    ohisteventno;
    412   1.9     lukem 						if (hist_get(el) == CC_ERROR)
    413  1.27  christos 							return CC_ERROR;
    414   1.9     lukem 					}
    415   1.9     lukem 					el->el_line.cursor = ocursor;
    416   1.9     lukem 					pchar = '?';
    417   1.9     lukem 				} else {
    418   1.9     lukem 					pchar = ':';
    419   1.9     lukem 				}
    420   1.9     lukem 			}
    421   1.9     lukem 			ret = ce_inc_search(el, newdir);
    422   1.1       cgd 
    423   1.9     lukem 			if (ret == CC_ERROR && pchar == '?' && oldpchar == ':')
    424   1.9     lukem 				/*
    425   1.9     lukem 				 * break abort of failed search at last
    426   1.9     lukem 				 * non-failed
    427   1.9     lukem 				 */
    428   1.9     lukem 				ret = CC_NORM;
    429   1.1       cgd 
    430   1.9     lukem 		}
    431   1.9     lukem 		if (ret == CC_NORM || (ret == CC_ERROR && oldpatlen == 0)) {
    432   1.9     lukem 			/* restore on normal return or error exit */
    433   1.9     lukem 			pchar = oldpchar;
    434   1.9     lukem 			el->el_search.patlen = oldpatlen;
    435   1.9     lukem 			if (el->el_history.eventno != ohisteventno) {
    436   1.9     lukem 				el->el_history.eventno = ohisteventno;
    437   1.9     lukem 				if (hist_get(el) == CC_ERROR)
    438  1.27  christos 					return CC_ERROR;
    439   1.9     lukem 			}
    440   1.9     lukem 			el->el_line.cursor = ocursor;
    441   1.9     lukem 			if (ret == CC_ERROR)
    442   1.9     lukem 				re_refresh(el);
    443   1.9     lukem 		}
    444   1.9     lukem 		if (done || ret != CC_NORM)
    445  1.27  christos 			return ret;
    446   1.1       cgd 	}
    447   1.1       cgd }
    448   1.1       cgd 
    449   1.1       cgd 
    450   1.1       cgd /* cv_search():
    451   1.1       cgd  *	Vi search.
    452   1.1       cgd  */
    453   1.1       cgd protected el_action_t
    454   1.9     lukem cv_search(EditLine *el, int dir)
    455   1.9     lukem {
    456  1.22  christos 	Char ch;
    457  1.22  christos 	Char tmpbuf[EL_BUFSIZ];
    458  1.29  christos 	ssize_t tmplen;
    459   1.1       cgd 
    460   1.1       cgd #ifdef ANCHOR
    461  1.14  christos 	tmpbuf[0] = '.';
    462  1.14  christos 	tmpbuf[1] = '*';
    463   1.1       cgd #endif
    464  1.14  christos 	tmplen = LEN;
    465   1.1       cgd 
    466   1.9     lukem 	el->el_search.patdir = dir;
    467   1.9     lukem 
    468  1.14  christos 	tmplen = c_gets(el, &tmpbuf[LEN],
    469  1.22  christos 		dir == ED_SEARCH_PREV_HISTORY ? STR("\n/") : STR("\n?") );
    470  1.14  christos 	if (tmplen == -1)
    471  1.14  christos 		return CC_REFRESH;
    472   1.1       cgd 
    473  1.14  christos 	tmplen += LEN;
    474   1.9     lukem 	ch = tmpbuf[tmplen];
    475   1.9     lukem 	tmpbuf[tmplen] = '\0';
    476   1.9     lukem 
    477   1.9     lukem 	if (tmplen == LEN) {
    478   1.9     lukem 		/*
    479   1.9     lukem 		 * Use the old pattern, but wild-card it.
    480   1.9     lukem 		 */
    481   1.9     lukem 		if (el->el_search.patlen == 0) {
    482   1.9     lukem 			re_refresh(el);
    483  1.27  christos 			return CC_ERROR;
    484   1.9     lukem 		}
    485   1.1       cgd #ifdef ANCHOR
    486   1.9     lukem 		if (el->el_search.patbuf[0] != '.' &&
    487   1.9     lukem 		    el->el_search.patbuf[0] != '*') {
    488  1.22  christos 			(void) Strncpy(tmpbuf, el->el_search.patbuf,
    489  1.22  christos 			    sizeof(tmpbuf) / sizeof(*tmpbuf) - 1);
    490   1.9     lukem 			el->el_search.patbuf[0] = '.';
    491   1.9     lukem 			el->el_search.patbuf[1] = '*';
    492  1.22  christos 			(void) Strncpy(&el->el_search.patbuf[2], tmpbuf,
    493   1.9     lukem 			    EL_BUFSIZ - 3);
    494   1.9     lukem 			el->el_search.patlen++;
    495   1.9     lukem 			el->el_search.patbuf[el->el_search.patlen++] = '.';
    496   1.9     lukem 			el->el_search.patbuf[el->el_search.patlen++] = '*';
    497   1.9     lukem 			el->el_search.patbuf[el->el_search.patlen] = '\0';
    498   1.9     lukem 		}
    499   1.1       cgd #endif
    500   1.9     lukem 	} else {
    501   1.1       cgd #ifdef ANCHOR
    502   1.9     lukem 		tmpbuf[tmplen++] = '.';
    503   1.9     lukem 		tmpbuf[tmplen++] = '*';
    504   1.1       cgd #endif
    505   1.9     lukem 		tmpbuf[tmplen] = '\0';
    506  1.22  christos 		(void) Strncpy(el->el_search.patbuf, tmpbuf, EL_BUFSIZ - 1);
    507  1.29  christos 		el->el_search.patlen = (size_t)tmplen;
    508   1.9     lukem 	}
    509   1.9     lukem 	el->el_state.lastcmd = (el_action_t) dir;	/* avoid c_setpat */
    510   1.9     lukem 	el->el_line.cursor = el->el_line.lastchar = el->el_line.buffer;
    511   1.9     lukem 	if ((dir == ED_SEARCH_PREV_HISTORY ? ed_search_prev_history(el, 0) :
    512  1.14  christos 	    ed_search_next_history(el, 0)) == CC_ERROR) {
    513   1.9     lukem 		re_refresh(el);
    514  1.27  christos 		return CC_ERROR;
    515   1.1       cgd 	}
    516  1.14  christos 	if (ch == 0033) {
    517  1.14  christos 		re_refresh(el);
    518  1.14  christos 		return ed_newline(el, 0);
    519  1.14  christos 	}
    520  1.27  christos 	return CC_REFRESH;
    521   1.1       cgd }
    522   1.1       cgd 
    523   1.1       cgd 
    524   1.1       cgd /* ce_search_line():
    525   1.1       cgd  *	Look for a pattern inside a line
    526   1.1       cgd  */
    527   1.1       cgd protected el_action_t
    528  1.18  christos ce_search_line(EditLine *el, int dir)
    529   1.9     lukem {
    530  1.22  christos 	Char *cp = el->el_line.cursor;
    531  1.22  christos 	Char *pattern = el->el_search.patbuf;
    532  1.22  christos 	Char oc, *ocp;
    533  1.19  christos #ifdef ANCHOR
    534  1.19  christos 	ocp = &pattern[1];
    535  1.19  christos 	oc = *ocp;
    536  1.19  christos 	*ocp = '^';
    537  1.19  christos #else
    538  1.19  christos 	ocp = pattern;
    539  1.19  christos 	oc = *ocp;
    540  1.19  christos #endif
    541   1.9     lukem 
    542   1.9     lukem 	if (dir == ED_SEARCH_PREV_HISTORY) {
    543  1.18  christos 		for (; cp >= el->el_line.buffer; cp--) {
    544  1.19  christos 			if (el_match(cp, ocp)) {
    545  1.19  christos 				*ocp = oc;
    546   1.9     lukem 				el->el_line.cursor = cp;
    547  1.27  christos 				return CC_NORM;
    548   1.9     lukem 			}
    549  1.18  christos 		}
    550  1.19  christos 		*ocp = oc;
    551  1.27  christos 		return CC_ERROR;
    552   1.9     lukem 	} else {
    553  1.18  christos 		for (; *cp != '\0' && cp < el->el_line.limit; cp++) {
    554  1.18  christos 			if (el_match(cp, ocp)) {
    555  1.18  christos 				*ocp = oc;
    556   1.9     lukem 				el->el_line.cursor = cp;
    557  1.27  christos 				return CC_NORM;
    558   1.9     lukem 			}
    559  1.18  christos 		}
    560  1.18  christos 		*ocp = oc;
    561  1.27  christos 		return CC_ERROR;
    562   1.9     lukem 	}
    563   1.1       cgd }
    564   1.1       cgd 
    565   1.1       cgd 
    566   1.1       cgd /* cv_repeat_srch():
    567   1.1       cgd  *	Vi repeat search
    568   1.1       cgd  */
    569   1.1       cgd protected el_action_t
    570  1.24  christos cv_repeat_srch(EditLine *el, Int c)
    571   1.1       cgd {
    572   1.9     lukem 
    573   1.1       cgd #ifdef SDEBUG
    574   1.9     lukem 	(void) fprintf(el->el_errfile, "dir %d patlen %d patbuf %s\n",
    575  1.22  christos 	    c, el->el_search.patlen, ct_encode_string(el->el_search.patbuf));
    576   1.1       cgd #endif
    577   1.1       cgd 
    578   1.9     lukem 	el->el_state.lastcmd = (el_action_t) c;	/* Hack to stop c_setpat */
    579   1.9     lukem 	el->el_line.lastchar = el->el_line.buffer;
    580   1.1       cgd 
    581   1.9     lukem 	switch (c) {
    582   1.9     lukem 	case ED_SEARCH_NEXT_HISTORY:
    583  1.27  christos 		return ed_search_next_history(el, 0);
    584   1.9     lukem 	case ED_SEARCH_PREV_HISTORY:
    585  1.27  christos 		return ed_search_prev_history(el, 0);
    586   1.9     lukem 	default:
    587  1.27  christos 		return CC_ERROR;
    588   1.9     lukem 	}
    589   1.1       cgd }
    590   1.1       cgd 
    591   1.1       cgd 
    592  1.13  christos /* cv_csearch():
    593  1.13  christos  *	Vi character search
    594   1.1       cgd  */
    595   1.1       cgd protected el_action_t
    596  1.24  christos cv_csearch(EditLine *el, int direction, Int ch, int count, int tflag)
    597   1.9     lukem {
    598  1.22  christos 	Char *cp;
    599   1.9     lukem 
    600  1.13  christos 	if (ch == 0)
    601  1.13  christos 		return CC_ERROR;
    602   1.9     lukem 
    603  1.30  christos 	if (ch == (Int)-1) {
    604  1.22  christos 		Char c;
    605  1.22  christos 		if (FUN(el,getc)(el, &c) != 1)
    606  1.13  christos 			return ed_end_of_file(el, 0);
    607  1.13  christos 		ch = c;
    608   1.9     lukem 	}
    609   1.1       cgd 
    610  1.13  christos 	/* Save for ';' and ',' commands */
    611  1.13  christos 	el->el_search.chacha = ch;
    612  1.13  christos 	el->el_search.chadir = direction;
    613  1.29  christos 	el->el_search.chatflg = (char)tflag;
    614   1.9     lukem 
    615   1.9     lukem 	cp = el->el_line.cursor;
    616   1.9     lukem 	while (count--) {
    617  1.30  christos 		if ((Int)*cp == ch)
    618  1.13  christos 			cp += direction;
    619  1.13  christos 		for (;;cp += direction) {
    620  1.13  christos 			if (cp >= el->el_line.lastchar)
    621  1.13  christos 				return CC_ERROR;
    622  1.13  christos 			if (cp < el->el_line.buffer)
    623  1.13  christos 				return CC_ERROR;
    624  1.30  christos 			if ((Int)*cp == ch)
    625  1.13  christos 				break;
    626  1.13  christos 		}
    627   1.9     lukem 	}
    628   1.9     lukem 
    629  1.13  christos 	if (tflag)
    630  1.13  christos 		cp -= direction;
    631   1.9     lukem 
    632   1.9     lukem 	el->el_line.cursor = cp;
    633   1.9     lukem 
    634  1.13  christos 	if (el->el_chared.c_vcmd.action != NOP) {
    635  1.13  christos 		if (direction > 0)
    636  1.13  christos 			el->el_line.cursor++;
    637   1.9     lukem 		cv_delfini(el);
    638  1.13  christos 		return CC_REFRESH;
    639   1.9     lukem 	}
    640  1.13  christos 	return CC_CURSOR;
    641   1.1       cgd }
    642