Home | History | Annotate | Line # | Download | only in libedit
el.c revision 1.38.2.1
      1  1.38.2.1      tron /*	$NetBSD: el.c,v 1.38.2.1 2004/07/10 09:28:27 tron Exp $	*/
      2       1.2     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.32       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.29  christos #include "config.h"
     36       1.1       cgd #if !defined(lint) && !defined(SCCSID)
     37       1.2     lukem #if 0
     38       1.1       cgd static char sccsid[] = "@(#)el.c	8.2 (Berkeley) 1/3/94";
     39       1.2     lukem #else
     40  1.38.2.1      tron __RCSID("$NetBSD: el.c,v 1.38.2.1 2004/07/10 09:28:27 tron Exp $");
     41       1.2     lukem #endif
     42       1.1       cgd #endif /* not lint && not SCCSID */
     43       1.1       cgd 
     44       1.1       cgd /*
     45       1.1       cgd  * el.c: EditLine interface functions
     46       1.1       cgd  */
     47       1.1       cgd #include <sys/types.h>
     48       1.1       cgd #include <sys/param.h>
     49       1.1       cgd #include <string.h>
     50       1.1       cgd #include <stdlib.h>
     51      1.19     lukem #include <stdarg.h>
     52       1.1       cgd #include "el.h"
     53       1.1       cgd 
     54       1.1       cgd /* el_init():
     55       1.1       cgd  *	Initialize editline and set default parameters.
     56       1.1       cgd  */
     57       1.1       cgd public EditLine *
     58      1.19     lukem el_init(const char *prog, FILE *fin, FILE *fout, FILE *ferr)
     59       1.1       cgd {
     60      1.18     chuck 
     61      1.19     lukem 	EditLine *el = (EditLine *) el_malloc(sizeof(EditLine));
     62       1.1       cgd 
     63      1.19     lukem 	if (el == NULL)
     64      1.19     lukem 		return (NULL);
     65       1.1       cgd 
     66      1.19     lukem 	memset(el, 0, sizeof(EditLine));
     67       1.1       cgd 
     68      1.19     lukem 	el->el_infd = fileno(fin);
     69      1.19     lukem 	el->el_outfile = fout;
     70      1.19     lukem 	el->el_errfile = ferr;
     71      1.36  christos 	if ((el->el_prog = el_strdup(prog)) == NULL) {
     72      1.36  christos 		el_free(el);
     73      1.36  christos 		return NULL;
     74      1.36  christos 	}
     75      1.19     lukem 
     76      1.19     lukem 	/*
     77      1.19     lukem          * Initialize all the modules. Order is important!!!
     78      1.19     lukem          */
     79      1.19     lukem 	el->el_flags = 0;
     80      1.19     lukem 
     81      1.25  christos 	if (term_init(el) == -1) {
     82      1.36  christos 		el_free(el->el_prog);
     83      1.25  christos 		el_free(el);
     84      1.25  christos 		return NULL;
     85      1.25  christos 	}
     86      1.19     lukem 	(void) key_init(el);
     87      1.19     lukem 	(void) map_init(el);
     88      1.19     lukem 	if (tty_init(el) == -1)
     89      1.19     lukem 		el->el_flags |= NO_TTY;
     90      1.19     lukem 	(void) ch_init(el);
     91      1.19     lukem 	(void) search_init(el);
     92      1.19     lukem 	(void) hist_init(el);
     93      1.19     lukem 	(void) prompt_init(el);
     94      1.19     lukem 	(void) sig_init(el);
     95      1.23  christos 	(void) read_init(el);
     96       1.1       cgd 
     97      1.19     lukem 	return (el);
     98      1.19     lukem }
     99       1.1       cgd 
    100       1.1       cgd 
    101       1.1       cgd /* el_end():
    102       1.1       cgd  *	Clean up.
    103       1.1       cgd  */
    104       1.1       cgd public void
    105      1.19     lukem el_end(EditLine *el)
    106       1.1       cgd {
    107       1.1       cgd 
    108      1.19     lukem 	if (el == NULL)
    109      1.19     lukem 		return;
    110       1.1       cgd 
    111      1.19     lukem 	el_reset(el);
    112      1.19     lukem 
    113      1.19     lukem 	term_end(el);
    114      1.19     lukem 	key_end(el);
    115      1.19     lukem 	map_end(el);
    116      1.19     lukem 	tty_end(el);
    117      1.19     lukem 	ch_end(el);
    118      1.19     lukem 	search_end(el);
    119      1.19     lukem 	hist_end(el);
    120      1.19     lukem 	prompt_end(el);
    121      1.19     lukem 	sig_end(el);
    122      1.19     lukem 
    123      1.19     lukem 	el_free((ptr_t) el->el_prog);
    124      1.19     lukem 	el_free((ptr_t) el);
    125      1.19     lukem }
    126       1.1       cgd 
    127       1.1       cgd 
    128       1.1       cgd /* el_reset():
    129       1.1       cgd  *	Reset the tty and the parser
    130       1.1       cgd  */
    131       1.1       cgd public void
    132      1.19     lukem el_reset(EditLine *el)
    133       1.1       cgd {
    134      1.19     lukem 
    135      1.19     lukem 	tty_cookedmode(el);
    136      1.19     lukem 	ch_reset(el);		/* XXX: Do we want that? */
    137       1.1       cgd }
    138       1.1       cgd 
    139       1.1       cgd 
    140       1.1       cgd /* el_set():
    141       1.1       cgd  *	set the editline parameters
    142       1.1       cgd  */
    143       1.1       cgd public int
    144       1.1       cgd el_set(EditLine *el, int op, ...)
    145       1.1       cgd {
    146      1.19     lukem 	va_list va;
    147      1.27  christos 	int rv = 0;
    148       1.1       cgd 
    149      1.19     lukem 	if (el == NULL)
    150      1.19     lukem 		return (-1);
    151      1.22       wiz 	va_start(va, op);
    152      1.22       wiz 
    153      1.19     lukem 	switch (op) {
    154      1.19     lukem 	case EL_PROMPT:
    155      1.19     lukem 	case EL_RPROMPT:
    156      1.19     lukem 		rv = prompt_set(el, va_arg(va, el_pfunc_t), op);
    157      1.19     lukem 		break;
    158      1.13    simonb 
    159      1.19     lukem 	case EL_TERMINAL:
    160      1.19     lukem 		rv = term_set(el, va_arg(va, char *));
    161      1.19     lukem 		break;
    162       1.1       cgd 
    163      1.19     lukem 	case EL_EDITOR:
    164      1.19     lukem 		rv = map_set_editor(el, va_arg(va, char *));
    165       1.1       cgd 		break;
    166       1.1       cgd 
    167      1.19     lukem 	case EL_SIGNAL:
    168      1.19     lukem 		if (va_arg(va, int))
    169      1.19     lukem 			el->el_flags |= HANDLE_SIGNALS;
    170      1.19     lukem 		else
    171      1.19     lukem 			el->el_flags &= ~HANDLE_SIGNALS;
    172       1.1       cgd 		break;
    173       1.1       cgd 
    174      1.19     lukem 	case EL_BIND:
    175      1.19     lukem 	case EL_TELLTC:
    176      1.19     lukem 	case EL_SETTC:
    177      1.19     lukem 	case EL_ECHOTC:
    178      1.19     lukem 	case EL_SETTY:
    179      1.19     lukem 	{
    180      1.29  christos 		const char *argv[20];
    181      1.19     lukem 		int i;
    182      1.19     lukem 
    183      1.19     lukem 		for (i = 1; i < 20; i++)
    184      1.19     lukem 			if ((argv[i] = va_arg(va, char *)) == NULL)
    185      1.19     lukem 				break;
    186      1.19     lukem 
    187      1.19     lukem 		switch (op) {
    188      1.19     lukem 		case EL_BIND:
    189      1.19     lukem 			argv[0] = "bind";
    190      1.19     lukem 			rv = map_bind(el, i, argv);
    191      1.19     lukem 			break;
    192      1.19     lukem 
    193      1.19     lukem 		case EL_TELLTC:
    194      1.19     lukem 			argv[0] = "telltc";
    195      1.19     lukem 			rv = term_telltc(el, i, argv);
    196      1.19     lukem 			break;
    197      1.19     lukem 
    198      1.19     lukem 		case EL_SETTC:
    199      1.19     lukem 			argv[0] = "settc";
    200      1.19     lukem 			rv = term_settc(el, i, argv);
    201      1.19     lukem 			break;
    202      1.19     lukem 
    203      1.19     lukem 		case EL_ECHOTC:
    204      1.19     lukem 			argv[0] = "echotc";
    205      1.19     lukem 			rv = term_echotc(el, i, argv);
    206      1.19     lukem 			break;
    207      1.19     lukem 
    208      1.19     lukem 		case EL_SETTY:
    209      1.19     lukem 			argv[0] = "setty";
    210      1.19     lukem 			rv = tty_stty(el, i, argv);
    211      1.19     lukem 			break;
    212      1.19     lukem 
    213      1.19     lukem 		default:
    214      1.19     lukem 			rv = -1;
    215      1.20  christos 			EL_ABORT((el->el_errfile, "Bad op %d\n", op));
    216      1.19     lukem 			break;
    217      1.19     lukem 		}
    218       1.1       cgd 		break;
    219      1.19     lukem 	}
    220      1.19     lukem 
    221      1.19     lukem 	case EL_ADDFN:
    222      1.19     lukem 	{
    223      1.19     lukem 		char *name = va_arg(va, char *);
    224      1.19     lukem 		char *help = va_arg(va, char *);
    225      1.19     lukem 		el_func_t func = va_arg(va, el_func_t);
    226       1.1       cgd 
    227      1.19     lukem 		rv = map_addfunc(el, name, help, func);
    228       1.1       cgd 		break;
    229      1.19     lukem 	}
    230      1.19     lukem 
    231      1.19     lukem 	case EL_HIST:
    232      1.19     lukem 	{
    233      1.19     lukem 		hist_fun_t func = va_arg(va, hist_fun_t);
    234      1.19     lukem 		ptr_t ptr = va_arg(va, char *);
    235       1.1       cgd 
    236      1.19     lukem 		rv = hist_set(el, func, ptr);
    237       1.1       cgd 		break;
    238      1.19     lukem 	}
    239       1.1       cgd 
    240      1.19     lukem 	case EL_EDITMODE:
    241      1.19     lukem 		if (va_arg(va, int))
    242      1.19     lukem 			el->el_flags &= ~EDIT_DISABLED;
    243      1.19     lukem 		else
    244      1.19     lukem 			el->el_flags |= EDIT_DISABLED;
    245      1.19     lukem 		rv = 0;
    246       1.1       cgd 		break;
    247      1.13    simonb 
    248      1.23  christos 	case EL_GETCFN:
    249      1.23  christos 	{
    250      1.23  christos 		el_rfunc_t rc = va_arg(va, el_rfunc_t);
    251      1.23  christos 		rv = el_read_setfn(el, rc);
    252      1.23  christos 		break;
    253      1.23  christos 	}
    254      1.23  christos 
    255      1.24  christos 	case EL_CLIENTDATA:
    256      1.24  christos 		el->el_data = va_arg(va, void *);
    257      1.24  christos 		break;
    258      1.24  christos 
    259      1.34  christos 	case EL_UNBUFFERED:
    260      1.34  christos 		rv = va_arg(va, int);
    261      1.34  christos 		if (rv && !(el->el_flags & UNBUFFERED)) {
    262      1.34  christos 			el->el_flags |= UNBUFFERED;
    263      1.34  christos 			read_prepare(el);
    264      1.34  christos 		} else if (!rv && (el->el_flags & UNBUFFERED)) {
    265      1.34  christos 			el->el_flags &= ~UNBUFFERED;
    266      1.34  christos 			read_finish(el);
    267      1.34  christos 		}
    268      1.35  christos 		rv = 0;
    269      1.35  christos 		break;
    270      1.35  christos 
    271      1.35  christos 	case EL_PREP_TERM:
    272      1.35  christos 		rv = va_arg(va, int);
    273      1.35  christos 		if (rv)
    274      1.38  christos 			(void) tty_rawmode(el);
    275      1.35  christos 		else
    276      1.38  christos 			(void) tty_cookedmode(el);
    277      1.34  christos 		rv = 0;
    278      1.34  christos 		break;
    279      1.34  christos 
    280      1.19     lukem 	default:
    281      1.19     lukem 		rv = -1;
    282      1.27  christos 		break;
    283       1.1       cgd 	}
    284       1.1       cgd 
    285      1.19     lukem 	va_end(va);
    286      1.19     lukem 	return (rv);
    287      1.19     lukem }
    288       1.1       cgd 
    289       1.1       cgd 
    290      1.10     lukem /* el_get():
    291      1.10     lukem  *	retrieve the editline parameters
    292      1.10     lukem  */
    293      1.10     lukem public int
    294      1.19     lukem el_get(EditLine *el, int op, void *ret)
    295      1.10     lukem {
    296      1.19     lukem 	int rv;
    297      1.10     lukem 
    298      1.19     lukem 	if (el == NULL || ret == NULL)
    299      1.19     lukem 		return (-1);
    300      1.19     lukem 	switch (op) {
    301      1.19     lukem 	case EL_PROMPT:
    302      1.19     lukem 	case EL_RPROMPT:
    303      1.30   thorpej 		rv = prompt_get(el, (void *) &ret, op);
    304      1.19     lukem 		break;
    305      1.10     lukem 
    306      1.19     lukem 	case EL_EDITOR:
    307      1.30   thorpej 		rv = map_get_editor(el, (void *) &ret);
    308      1.10     lukem 		break;
    309      1.10     lukem 
    310      1.19     lukem 	case EL_SIGNAL:
    311      1.19     lukem 		*((int *) ret) = (el->el_flags & HANDLE_SIGNALS);
    312      1.19     lukem 		rv = 0;
    313      1.10     lukem 		break;
    314      1.10     lukem 
    315      1.19     lukem 	case EL_EDITMODE:
    316      1.19     lukem 		*((int *) ret) = (!(el->el_flags & EDIT_DISABLED));
    317      1.19     lukem 		rv = 0;
    318      1.10     lukem 		break;
    319      1.10     lukem 
    320      1.19     lukem 	case EL_TERMINAL:
    321      1.33  christos 		term_get(el, (const char **)ret);
    322      1.33  christos 		rv = 0;
    323      1.10     lukem 		break;
    324      1.10     lukem 
    325      1.33  christos #if 0				/* XXX */
    326      1.19     lukem 	case EL_BIND:
    327      1.19     lukem 	case EL_TELLTC:
    328      1.19     lukem 	case EL_SETTC:
    329      1.19     lukem 	case EL_ECHOTC:
    330      1.19     lukem 	case EL_SETTY:
    331      1.19     lukem 	{
    332      1.31  christos 		const char *argv[20];
    333      1.19     lukem 		int i;
    334      1.10     lukem 
    335      1.31  christos  		for (i = 1; i < sizeof(argv) / sizeof(argv[0]); i++)
    336      1.19     lukem 			if ((argv[i] = va_arg(va, char *)) == NULL)
    337      1.19     lukem 				break;
    338      1.19     lukem 
    339      1.19     lukem 		switch (op) {
    340      1.19     lukem 		case EL_BIND:
    341      1.19     lukem 			argv[0] = "bind";
    342      1.19     lukem 			rv = map_bind(el, i, argv);
    343      1.19     lukem 			break;
    344      1.19     lukem 
    345      1.19     lukem 		case EL_TELLTC:
    346      1.19     lukem 			argv[0] = "telltc";
    347      1.19     lukem 			rv = term_telltc(el, i, argv);
    348      1.19     lukem 			break;
    349      1.19     lukem 
    350      1.19     lukem 		case EL_SETTC:
    351      1.19     lukem 			argv[0] = "settc";
    352      1.19     lukem 			rv = term_settc(el, i, argv);
    353      1.19     lukem 			break;
    354      1.19     lukem 
    355      1.19     lukem 		case EL_ECHOTC:
    356      1.19     lukem 			argv[0] = "echotc";
    357      1.19     lukem 			rv = term_echotc(el, i, argv);
    358      1.19     lukem 			break;
    359      1.19     lukem 
    360      1.19     lukem 		case EL_SETTY:
    361      1.19     lukem 			argv[0] = "setty";
    362      1.19     lukem 			rv = tty_stty(el, i, argv);
    363      1.19     lukem 			break;
    364      1.19     lukem 
    365      1.19     lukem 		default:
    366      1.19     lukem 			rv = -1;
    367      1.20  christos 			EL_ABORT((el->errfile, "Bad op %d\n", op));
    368      1.19     lukem 			break;
    369      1.19     lukem 		}
    370      1.10     lukem 		break;
    371      1.10     lukem 	}
    372      1.13    simonb 
    373      1.19     lukem 	case EL_ADDFN:
    374      1.10     lukem 	{
    375      1.19     lukem 		char *name = va_arg(va, char *);
    376      1.19     lukem 		char *help = va_arg(va, char *);
    377      1.19     lukem 		el_func_t func = va_arg(va, el_func_t);
    378      1.19     lukem 
    379      1.19     lukem 		rv = map_addfunc(el, name, help, func);
    380      1.19     lukem 		break;
    381      1.10     lukem 	}
    382      1.10     lukem 
    383      1.19     lukem 	case EL_HIST:
    384      1.19     lukem 		{
    385      1.19     lukem 			hist_fun_t func = va_arg(va, hist_fun_t);
    386      1.19     lukem 			ptr_t ptr = va_arg(va, char *);
    387      1.19     lukem 			rv = hist_set(el, func, ptr);
    388      1.19     lukem 		}
    389      1.19     lukem 		break;
    390      1.19     lukem #endif /* XXX */
    391      1.23  christos 
    392      1.23  christos 	case EL_GETCFN:
    393      1.23  christos 		*((el_rfunc_t *)ret) = el_read_getfn(el);
    394      1.24  christos 		rv = 0;
    395      1.24  christos 		break;
    396      1.24  christos 
    397      1.24  christos 	case EL_CLIENTDATA:
    398      1.24  christos 		*((void **)ret) = el->el_data;
    399      1.34  christos 		rv = 0;
    400      1.34  christos 		break;
    401      1.34  christos 
    402      1.34  christos 	case EL_UNBUFFERED:
    403      1.34  christos 		*((int *) ret) = (!(el->el_flags & UNBUFFERED));
    404      1.23  christos 		rv = 0;
    405      1.23  christos 		break;
    406      1.19     lukem 
    407      1.19     lukem 	default:
    408      1.19     lukem 		rv = -1;
    409      1.19     lukem 	}
    410      1.10     lukem 
    411      1.19     lukem 	return (rv);
    412      1.19     lukem }
    413      1.10     lukem 
    414      1.10     lukem 
    415       1.1       cgd /* el_line():
    416       1.1       cgd  *	Return editing info
    417       1.1       cgd  */
    418       1.1       cgd public const LineInfo *
    419      1.19     lukem el_line(EditLine *el)
    420       1.1       cgd {
    421      1.19     lukem 
    422      1.19     lukem 	return (const LineInfo *) (void *) &el->el_line;
    423       1.1       cgd }
    424       1.1       cgd 
    425       1.1       cgd 
    426       1.1       cgd /* el_source():
    427       1.1       cgd  *	Source a file
    428       1.1       cgd  */
    429       1.1       cgd public int
    430      1.19     lukem el_source(EditLine *el, const char *fname)
    431       1.1       cgd {
    432      1.19     lukem 	FILE *fp;
    433      1.19     lukem 	size_t len;
    434      1.27  christos 	char *ptr;
    435      1.19     lukem 
    436      1.19     lukem 	fp = NULL;
    437      1.19     lukem 	if (fname == NULL) {
    438      1.29  christos #ifdef HAVE_ISSETUGID
    439      1.27  christos 		static const char elpath[] = "/.editrc";
    440      1.27  christos 		char path[MAXPATHLEN];
    441      1.27  christos 
    442      1.19     lukem 		if (issetugid())
    443      1.19     lukem 			return (-1);
    444      1.19     lukem 		if ((ptr = getenv("HOME")) == NULL)
    445      1.19     lukem 			return (-1);
    446      1.19     lukem 		if (strlcpy(path, ptr, sizeof(path)) >= sizeof(path))
    447      1.19     lukem 			return (-1);
    448      1.19     lukem 		if (strlcat(path, elpath, sizeof(path)) >= sizeof(path))
    449      1.19     lukem 			return (-1);
    450      1.19     lukem 		fname = path;
    451      1.27  christos #else
    452      1.27  christos 		/*
    453      1.27  christos 		 * If issetugid() is missing, always return an error, in order
    454      1.27  christos 		 * to keep from inadvertently opening up the user to a security
    455      1.27  christos 		 * hole.
    456      1.27  christos 		 */
    457      1.27  christos 		return (-1);
    458      1.27  christos #endif
    459      1.19     lukem 	}
    460      1.19     lukem 	if (fp == NULL)
    461      1.19     lukem 		fp = fopen(fname, "r");
    462      1.19     lukem 	if (fp == NULL)
    463      1.19     lukem 		return (-1);
    464      1.19     lukem 
    465      1.19     lukem 	while ((ptr = fgetln(fp, &len)) != NULL) {
    466      1.19     lukem 		if (len > 0 && ptr[len - 1] == '\n')
    467      1.19     lukem 			--len;
    468      1.19     lukem 		ptr[len] = '\0';
    469      1.19     lukem 		if (parse_line(el, ptr) == -1) {
    470      1.19     lukem 			(void) fclose(fp);
    471      1.19     lukem 			return (-1);
    472      1.19     lukem 		}
    473       1.1       cgd 	}
    474       1.1       cgd 
    475      1.19     lukem 	(void) fclose(fp);
    476      1.19     lukem 	return (0);
    477       1.1       cgd }
    478       1.1       cgd 
    479       1.1       cgd 
    480       1.1       cgd /* el_resize():
    481       1.1       cgd  *	Called from program when terminal is resized
    482       1.1       cgd  */
    483       1.1       cgd public void
    484      1.19     lukem el_resize(EditLine *el)
    485       1.1       cgd {
    486      1.19     lukem 	int lins, cols;
    487      1.19     lukem 	sigset_t oset, nset;
    488      1.19     lukem 
    489      1.19     lukem 	(void) sigemptyset(&nset);
    490      1.19     lukem 	(void) sigaddset(&nset, SIGWINCH);
    491      1.19     lukem 	(void) sigprocmask(SIG_BLOCK, &nset, &oset);
    492      1.19     lukem 
    493      1.19     lukem 	/* get the correct window size */
    494      1.19     lukem 	if (term_get_size(el, &lins, &cols))
    495      1.19     lukem 		term_change_size(el, lins, cols);
    496       1.1       cgd 
    497      1.19     lukem 	(void) sigprocmask(SIG_SETMASK, &oset, NULL);
    498       1.9  christos }
    499      1.14     lukem 
    500       1.9  christos 
    501       1.9  christos /* el_beep():
    502       1.9  christos  *	Called from the program to beep
    503       1.9  christos  */
    504       1.9  christos public void
    505      1.19     lukem el_beep(EditLine *el)
    506       1.9  christos {
    507      1.19     lukem 
    508      1.19     lukem 	term_beep(el);
    509       1.1       cgd }
    510      1.10     lukem 
    511      1.10     lukem 
    512      1.10     lukem /* el_editmode()
    513      1.10     lukem  *	Set the state of EDIT_DISABLED from the `edit' command.
    514      1.10     lukem  */
    515      1.10     lukem protected int
    516      1.10     lukem /*ARGSUSED*/
    517      1.29  christos el_editmode(EditLine *el, int argc, const char **argv)
    518      1.10     lukem {
    519      1.19     lukem 	const char *how;
    520      1.10     lukem 
    521      1.19     lukem 	if (argv == NULL || argc != 2 || argv[1] == NULL)
    522      1.19     lukem 		return (-1);
    523      1.10     lukem 
    524      1.19     lukem 	how = argv[1];
    525  1.38.2.1      tron 	if (strcmp(how, "on") == 0) {
    526      1.19     lukem 		el->el_flags &= ~EDIT_DISABLED;
    527  1.38.2.1      tron 		tty_rawmode(el);
    528  1.38.2.1      tron 	} else if (strcmp(how, "off") == 0) {
    529  1.38.2.1      tron 		tty_cookedmode(el);
    530      1.19     lukem 		el->el_flags |= EDIT_DISABLED;
    531  1.38.2.1      tron 	}
    532      1.19     lukem 	else {
    533      1.19     lukem 		(void) fprintf(el->el_errfile, "edit: Bad value `%s'.\n", how);
    534      1.19     lukem 		return (-1);
    535      1.19     lukem 	}
    536      1.19     lukem 	return (0);
    537      1.19     lukem }
    538