Home | History | Annotate | Line # | Download | only in libedit
terminal.c revision 1.2
      1  1.2  christos /*	$NetBSD: terminal.c,v 1.2 2011/07/28 01:56:27 christos Exp $	*/
      2  1.1  christos 
      3  1.1  christos /*-
      4  1.1  christos  * Copyright (c) 1992, 1993
      5  1.1  christos  *	The Regents of the University of California.  All rights reserved.
      6  1.1  christos  *
      7  1.1  christos  * This code is derived from software contributed to Berkeley by
      8  1.1  christos  * Christos Zoulas of Cornell University.
      9  1.1  christos  *
     10  1.1  christos  * Redistribution and use in source and binary forms, with or without
     11  1.1  christos  * modification, are permitted provided that the following conditions
     12  1.1  christos  * are met:
     13  1.1  christos  * 1. Redistributions of source code must retain the above copyright
     14  1.1  christos  *    notice, this list of conditions and the following disclaimer.
     15  1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     17  1.1  christos  *    documentation and/or other materials provided with the distribution.
     18  1.1  christos  * 3. Neither the name of the University nor the names of its contributors
     19  1.1  christos  *    may be used to endorse or promote products derived from this software
     20  1.1  christos  *    without specific prior written permission.
     21  1.1  christos  *
     22  1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23  1.1  christos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24  1.1  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25  1.1  christos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26  1.1  christos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27  1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28  1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29  1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30  1.1  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31  1.1  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32  1.1  christos  * SUCH DAMAGE.
     33  1.1  christos  */
     34  1.1  christos 
     35  1.1  christos #include "config.h"
     36  1.1  christos #if !defined(lint) && !defined(SCCSID)
     37  1.1  christos #if 0
     38  1.1  christos static char sccsid[] = "@(#)term.c	8.2 (Berkeley) 4/30/95";
     39  1.1  christos #else
     40  1.2  christos __RCSID("$NetBSD: terminal.c,v 1.2 2011/07/28 01:56:27 christos Exp $");
     41  1.1  christos #endif
     42  1.1  christos #endif /* not lint && not SCCSID */
     43  1.1  christos 
     44  1.1  christos /*
     45  1.1  christos  * term.c: Editor/termcap-curses interface
     46  1.1  christos  *	   We have to declare a static variable here, since the
     47  1.1  christos  *	   termcap putchar routine does not take an argument!
     48  1.1  christos  */
     49  1.1  christos #include <stdio.h>
     50  1.1  christos #include <signal.h>
     51  1.1  christos #include <string.h>
     52  1.1  christos #include <stdlib.h>
     53  1.1  christos #include <unistd.h>
     54  1.1  christos #include <limits.h>
     55  1.1  christos #ifdef HAVE_TERMCAP_H
     56  1.1  christos #include <termcap.h>
     57  1.1  christos #endif
     58  1.1  christos #ifdef HAVE_CURSES_H
     59  1.1  christos #include <curses.h>
     60  1.1  christos #elif HAVE_NCURSES_H
     61  1.1  christos #include <ncurses.h>
     62  1.1  christos #endif
     63  1.1  christos 
     64  1.1  christos /* Solaris's term.h does horrid things. */
     65  1.1  christos #if defined(HAVE_TERM_H) && !defined(__sun)
     66  1.1  christos #include <term.h>
     67  1.1  christos #endif
     68  1.1  christos 
     69  1.1  christos #include <sys/types.h>
     70  1.1  christos #include <sys/ioctl.h>
     71  1.1  christos 
     72  1.1  christos #ifdef _REENTRANT
     73  1.1  christos #include <pthread.h>
     74  1.1  christos #endif
     75  1.1  christos 
     76  1.1  christos #include "el.h"
     77  1.1  christos 
     78  1.1  christos /*
     79  1.1  christos  * IMPORTANT NOTE: these routines are allowed to look at the current screen
     80  1.1  christos  * and the current position assuming that it is correct.  If this is not
     81  1.1  christos  * true, then the update will be WRONG!  This is (should be) a valid
     82  1.1  christos  * assumption...
     83  1.1  christos  */
     84  1.1  christos 
     85  1.1  christos #define	TC_BUFSIZE	2048
     86  1.1  christos 
     87  1.1  christos #define	GoodStr(a)	(el->el_terminal.t_str[a] != NULL && \
     88  1.1  christos 			    el->el_terminal.t_str[a][0] != '\0')
     89  1.1  christos #define	Str(a)		el->el_terminal.t_str[a]
     90  1.1  christos #define	Val(a)		el->el_terminal.t_val[a]
     91  1.1  christos 
     92  1.1  christos #ifdef notdef
     93  1.1  christos private const struct {
     94  1.1  christos 	const char *b_name;
     95  1.1  christos 	int b_rate;
     96  1.1  christos } baud_rate[] = {
     97  1.1  christos #ifdef B0
     98  1.1  christos 	{ "0", B0 },
     99  1.1  christos #endif
    100  1.1  christos #ifdef B50
    101  1.1  christos 	{ "50", B50 },
    102  1.1  christos #endif
    103  1.1  christos #ifdef B75
    104  1.1  christos 	{ "75", B75 },
    105  1.1  christos #endif
    106  1.1  christos #ifdef B110
    107  1.1  christos 	{ "110", B110 },
    108  1.1  christos #endif
    109  1.1  christos #ifdef B134
    110  1.1  christos 	{ "134", B134 },
    111  1.1  christos #endif
    112  1.1  christos #ifdef B150
    113  1.1  christos 	{ "150", B150 },
    114  1.1  christos #endif
    115  1.1  christos #ifdef B200
    116  1.1  christos 	{ "200", B200 },
    117  1.1  christos #endif
    118  1.1  christos #ifdef B300
    119  1.1  christos 	{ "300", B300 },
    120  1.1  christos #endif
    121  1.1  christos #ifdef B600
    122  1.1  christos 	{ "600", B600 },
    123  1.1  christos #endif
    124  1.1  christos #ifdef B900
    125  1.1  christos 	{ "900", B900 },
    126  1.1  christos #endif
    127  1.1  christos #ifdef B1200
    128  1.1  christos 	{ "1200", B1200 },
    129  1.1  christos #endif
    130  1.1  christos #ifdef B1800
    131  1.1  christos 	{ "1800", B1800 },
    132  1.1  christos #endif
    133  1.1  christos #ifdef B2400
    134  1.1  christos 	{ "2400", B2400 },
    135  1.1  christos #endif
    136  1.1  christos #ifdef B3600
    137  1.1  christos 	{ "3600", B3600 },
    138  1.1  christos #endif
    139  1.1  christos #ifdef B4800
    140  1.1  christos 	{ "4800", B4800 },
    141  1.1  christos #endif
    142  1.1  christos #ifdef B7200
    143  1.1  christos 	{ "7200", B7200 },
    144  1.1  christos #endif
    145  1.1  christos #ifdef B9600
    146  1.1  christos 	{ "9600", B9600 },
    147  1.1  christos #endif
    148  1.1  christos #ifdef EXTA
    149  1.1  christos 	{ "19200", EXTA },
    150  1.1  christos #endif
    151  1.1  christos #ifdef B19200
    152  1.1  christos 	{ "19200", B19200 },
    153  1.1  christos #endif
    154  1.1  christos #ifdef EXTB
    155  1.1  christos 	{ "38400", EXTB },
    156  1.1  christos #endif
    157  1.1  christos #ifdef B38400
    158  1.1  christos 	{ "38400", B38400 },
    159  1.1  christos #endif
    160  1.1  christos 	{ NULL, 0 }
    161  1.1  christos };
    162  1.1  christos #endif
    163  1.1  christos 
    164  1.1  christos private const struct termcapstr {
    165  1.1  christos 	const char *name;
    166  1.1  christos 	const char *long_name;
    167  1.1  christos } tstr[] = {
    168  1.1  christos #define	T_al	0
    169  1.1  christos 	{ "al", "add new blank line" },
    170  1.1  christos #define	T_bl	1
    171  1.1  christos 	{ "bl", "audible bell" },
    172  1.1  christos #define	T_cd	2
    173  1.1  christos 	{ "cd", "clear to bottom" },
    174  1.1  christos #define	T_ce	3
    175  1.1  christos 	{ "ce", "clear to end of line" },
    176  1.1  christos #define	T_ch	4
    177  1.1  christos 	{ "ch", "cursor to horiz pos" },
    178  1.1  christos #define	T_cl	5
    179  1.1  christos 	{ "cl", "clear screen" },
    180  1.1  christos #define	T_dc	6
    181  1.1  christos 	{ "dc", "delete a character" },
    182  1.1  christos #define	T_dl	7
    183  1.1  christos 	{ "dl", "delete a line" },
    184  1.1  christos #define	T_dm	8
    185  1.1  christos 	{ "dm", "start delete mode" },
    186  1.1  christos #define	T_ed	9
    187  1.1  christos 	{ "ed", "end delete mode" },
    188  1.1  christos #define	T_ei	10
    189  1.1  christos 	{ "ei", "end insert mode" },
    190  1.1  christos #define	T_fs	11
    191  1.1  christos 	{ "fs", "cursor from status line" },
    192  1.1  christos #define	T_ho	12
    193  1.1  christos 	{ "ho", "home cursor" },
    194  1.1  christos #define	T_ic	13
    195  1.1  christos 	{ "ic", "insert character" },
    196  1.1  christos #define	T_im	14
    197  1.1  christos 	{ "im", "start insert mode" },
    198  1.1  christos #define	T_ip	15
    199  1.1  christos 	{ "ip", "insert padding" },
    200  1.1  christos #define	T_kd	16
    201  1.1  christos 	{ "kd", "sends cursor down" },
    202  1.1  christos #define	T_kl	17
    203  1.1  christos 	{ "kl", "sends cursor left" },
    204  1.1  christos #define	T_kr	18
    205  1.1  christos 	{ "kr", "sends cursor right" },
    206  1.1  christos #define	T_ku	19
    207  1.1  christos 	{ "ku", "sends cursor up" },
    208  1.1  christos #define	T_md	20
    209  1.1  christos 	{ "md", "begin bold" },
    210  1.1  christos #define	T_me	21
    211  1.1  christos 	{ "me", "end attributes" },
    212  1.1  christos #define	T_nd	22
    213  1.1  christos 	{ "nd", "non destructive space" },
    214  1.1  christos #define	T_se	23
    215  1.1  christos 	{ "se", "end standout" },
    216  1.1  christos #define	T_so	24
    217  1.1  christos 	{ "so", "begin standout" },
    218  1.1  christos #define	T_ts	25
    219  1.1  christos 	{ "ts", "cursor to status line" },
    220  1.1  christos #define	T_up	26
    221  1.1  christos 	{ "up", "cursor up one" },
    222  1.1  christos #define	T_us	27
    223  1.1  christos 	{ "us", "begin underline" },
    224  1.1  christos #define	T_ue	28
    225  1.1  christos 	{ "ue", "end underline" },
    226  1.1  christos #define	T_vb	29
    227  1.1  christos 	{ "vb", "visible bell" },
    228  1.1  christos #define	T_DC	30
    229  1.1  christos 	{ "DC", "delete multiple chars" },
    230  1.1  christos #define	T_DO	31
    231  1.1  christos 	{ "DO", "cursor down multiple" },
    232  1.1  christos #define	T_IC	32
    233  1.1  christos 	{ "IC", "insert multiple chars" },
    234  1.1  christos #define	T_LE	33
    235  1.1  christos 	{ "LE", "cursor left multiple" },
    236  1.1  christos #define	T_RI	34
    237  1.1  christos 	{ "RI", "cursor right multiple" },
    238  1.1  christos #define	T_UP	35
    239  1.1  christos 	{ "UP", "cursor up multiple" },
    240  1.1  christos #define	T_kh	36
    241  1.1  christos 	{ "kh", "send cursor home" },
    242  1.1  christos #define	T_at7	37
    243  1.1  christos 	{ "@7", "send cursor end" },
    244  1.1  christos #define	T_str	38
    245  1.1  christos 	{ NULL, NULL }
    246  1.1  christos };
    247  1.1  christos 
    248  1.1  christos private const struct termcapval {
    249  1.1  christos 	const char *name;
    250  1.1  christos 	const char *long_name;
    251  1.1  christos } tval[] = {
    252  1.1  christos #define	T_am	0
    253  1.1  christos 	{ "am", "has automatic margins" },
    254  1.1  christos #define	T_pt	1
    255  1.1  christos 	{ "pt", "has physical tabs" },
    256  1.1  christos #define	T_li	2
    257  1.1  christos 	{ "li", "Number of lines" },
    258  1.1  christos #define	T_co	3
    259  1.1  christos 	{ "co", "Number of columns" },
    260  1.1  christos #define	T_km	4
    261  1.1  christos 	{ "km", "Has meta key" },
    262  1.1  christos #define	T_xt	5
    263  1.1  christos 	{ "xt", "Tab chars destructive" },
    264  1.1  christos #define	T_xn	6
    265  1.1  christos 	{ "xn", "newline ignored at right margin" },
    266  1.1  christos #define	T_MT	7
    267  1.1  christos 	{ "MT", "Has meta key" },			/* XXX? */
    268  1.1  christos #define	T_val	8
    269  1.1  christos 	{ NULL, NULL, }
    270  1.1  christos };
    271  1.1  christos /* do two or more of the attributes use me */
    272  1.1  christos 
    273  1.1  christos private void	terminal_setflags(EditLine *);
    274  1.1  christos private int	terminal_rebuffer_display(EditLine *);
    275  1.1  christos private void	terminal_free_display(EditLine *);
    276  1.1  christos private int	terminal_alloc_display(EditLine *);
    277  1.1  christos private void	terminal_alloc(EditLine *, const struct termcapstr *, const char *);
    278  1.1  christos private void	terminal_init_arrow(EditLine *);
    279  1.1  christos private void	terminal_reset_arrow(EditLine *);
    280  1.1  christos private int	terminal_putc(int);
    281  1.1  christos private void	terminal_tputs(EditLine *, const char *, int);
    282  1.1  christos 
    283  1.1  christos #ifdef _REENTRANT
    284  1.1  christos private pthread_mutex_t terminal_mutex = PTHREAD_MUTEX_INITIALIZER;
    285  1.1  christos #endif
    286  1.1  christos private FILE *terminal_outfile = NULL;
    287  1.1  christos 
    288  1.1  christos 
    289  1.1  christos /* terminal_setflags():
    290  1.1  christos  *	Set the terminal capability flags
    291  1.1  christos  */
    292  1.1  christos private void
    293  1.1  christos terminal_setflags(EditLine *el)
    294  1.1  christos {
    295  1.1  christos 	EL_FLAGS = 0;
    296  1.1  christos 	if (el->el_tty.t_tabs)
    297  1.1  christos 		EL_FLAGS |= (Val(T_pt) && !Val(T_xt)) ? TERM_CAN_TAB : 0;
    298  1.1  christos 
    299  1.1  christos 	EL_FLAGS |= (Val(T_km) || Val(T_MT)) ? TERM_HAS_META : 0;
    300  1.1  christos 	EL_FLAGS |= GoodStr(T_ce) ? TERM_CAN_CEOL : 0;
    301  1.1  christos 	EL_FLAGS |= (GoodStr(T_dc) || GoodStr(T_DC)) ? TERM_CAN_DELETE : 0;
    302  1.1  christos 	EL_FLAGS |= (GoodStr(T_im) || GoodStr(T_ic) || GoodStr(T_IC)) ?
    303  1.1  christos 	    TERM_CAN_INSERT : 0;
    304  1.1  christos 	EL_FLAGS |= (GoodStr(T_up) || GoodStr(T_UP)) ? TERM_CAN_UP : 0;
    305  1.1  christos 	EL_FLAGS |= Val(T_am) ? TERM_HAS_AUTO_MARGINS : 0;
    306  1.1  christos 	EL_FLAGS |= Val(T_xn) ? TERM_HAS_MAGIC_MARGINS : 0;
    307  1.1  christos 
    308  1.1  christos 	if (GoodStr(T_me) && GoodStr(T_ue))
    309  1.1  christos 		EL_FLAGS |= (strcmp(Str(T_me), Str(T_ue)) == 0) ?
    310  1.1  christos 		    TERM_CAN_ME : 0;
    311  1.1  christos 	else
    312  1.1  christos 		EL_FLAGS &= ~TERM_CAN_ME;
    313  1.1  christos 	if (GoodStr(T_me) && GoodStr(T_se))
    314  1.1  christos 		EL_FLAGS |= (strcmp(Str(T_me), Str(T_se)) == 0) ?
    315  1.1  christos 		    TERM_CAN_ME : 0;
    316  1.1  christos 
    317  1.1  christos 
    318  1.1  christos #ifdef DEBUG_SCREEN
    319  1.1  christos 	if (!EL_CAN_UP) {
    320  1.1  christos 		(void) fprintf(el->el_errfile,
    321  1.1  christos 		    "WARNING: Your terminal cannot move up.\n");
    322  1.1  christos 		(void) fprintf(el->el_errfile,
    323  1.1  christos 		    "Editing may be odd for long lines.\n");
    324  1.1  christos 	}
    325  1.1  christos 	if (!EL_CAN_CEOL)
    326  1.1  christos 		(void) fprintf(el->el_errfile, "no clear EOL capability.\n");
    327  1.1  christos 	if (!EL_CAN_DELETE)
    328  1.1  christos 		(void) fprintf(el->el_errfile, "no delete char capability.\n");
    329  1.1  christos 	if (!EL_CAN_INSERT)
    330  1.1  christos 		(void) fprintf(el->el_errfile, "no insert char capability.\n");
    331  1.1  christos #endif /* DEBUG_SCREEN */
    332  1.1  christos }
    333  1.1  christos 
    334  1.1  christos /* terminal_init():
    335  1.1  christos  *	Initialize the terminal stuff
    336  1.1  christos  */
    337  1.1  christos protected int
    338  1.1  christos terminal_init(EditLine *el)
    339  1.1  christos {
    340  1.1  christos 
    341  1.1  christos 	el->el_terminal.t_buf = (char *) el_malloc(TC_BUFSIZE);
    342  1.1  christos 	if (el->el_terminal.t_buf == NULL)
    343  1.1  christos 		return (-1);
    344  1.1  christos 	el->el_terminal.t_cap = (char *) el_malloc(TC_BUFSIZE);
    345  1.1  christos 	if (el->el_terminal.t_cap == NULL)
    346  1.1  christos 		return (-1);
    347  1.2  christos 	el->el_terminal.t_fkey = (funckey_t *) el_malloc(A_K_NKEYS * sizeof(funckey_t));
    348  1.1  christos 	if (el->el_terminal.t_fkey == NULL)
    349  1.1  christos 		return (-1);
    350  1.1  christos 	el->el_terminal.t_loc = 0;
    351  1.1  christos 	el->el_terminal.t_str = (char **) el_malloc(T_str * sizeof(char *));
    352  1.1  christos 	if (el->el_terminal.t_str == NULL)
    353  1.1  christos 		return (-1);
    354  1.1  christos 	(void) memset(el->el_terminal.t_str, 0, T_str * sizeof(char *));
    355  1.1  christos 	el->el_terminal.t_val = (int *) el_malloc(T_val * sizeof(int));
    356  1.1  christos 	if (el->el_terminal.t_val == NULL)
    357  1.1  christos 		return (-1);
    358  1.1  christos 	(void) memset(el->el_terminal.t_val, 0, T_val * sizeof(int));
    359  1.1  christos 	(void) terminal_set(el, NULL);
    360  1.1  christos 	terminal_init_arrow(el);
    361  1.1  christos 	return (0);
    362  1.1  christos }
    363  1.1  christos 
    364  1.1  christos /* terminal_end():
    365  1.1  christos  *	Clean up the terminal stuff
    366  1.1  christos  */
    367  1.1  christos protected void
    368  1.1  christos terminal_end(EditLine *el)
    369  1.1  christos {
    370  1.1  christos 
    371  1.1  christos 	el_free((ptr_t) el->el_terminal.t_buf);
    372  1.1  christos 	el->el_terminal.t_buf = NULL;
    373  1.1  christos 	el_free((ptr_t) el->el_terminal.t_cap);
    374  1.1  christos 	el->el_terminal.t_cap = NULL;
    375  1.1  christos 	el->el_terminal.t_loc = 0;
    376  1.1  christos 	el_free((ptr_t) el->el_terminal.t_str);
    377  1.1  christos 	el->el_terminal.t_str = NULL;
    378  1.1  christos 	el_free((ptr_t) el->el_terminal.t_val);
    379  1.1  christos 	el->el_terminal.t_val = NULL;
    380  1.1  christos 	el_free((ptr_t) el->el_terminal.t_fkey);
    381  1.1  christos 	el->el_terminal.t_fkey = NULL;
    382  1.1  christos 	terminal_free_display(el);
    383  1.1  christos }
    384  1.1  christos 
    385  1.1  christos 
    386  1.1  christos /* terminal_alloc():
    387  1.1  christos  *	Maintain a string pool for termcap strings
    388  1.1  christos  */
    389  1.1  christos private void
    390  1.1  christos terminal_alloc(EditLine *el, const struct termcapstr *t, const char *cap)
    391  1.1  christos {
    392  1.1  christos 	char termbuf[TC_BUFSIZE];
    393  1.1  christos 	size_t tlen, clen;
    394  1.1  christos 	char **tlist = el->el_terminal.t_str;
    395  1.1  christos 	char **tmp, **str = &tlist[t - tstr];
    396  1.1  christos 
    397  1.1  christos 	if (cap == NULL || *cap == '\0') {
    398  1.1  christos 		*str = NULL;
    399  1.1  christos 		return;
    400  1.1  christos 	} else
    401  1.1  christos 		clen = strlen(cap);
    402  1.1  christos 
    403  1.1  christos 	tlen = *str == NULL ? 0 : strlen(*str);
    404  1.1  christos 
    405  1.1  christos 	/*
    406  1.1  christos          * New string is shorter; no need to allocate space
    407  1.1  christos          */
    408  1.1  christos 	if (clen <= tlen) {
    409  1.1  christos 		if (*str)
    410  1.1  christos 			(void) strcpy(*str, cap);	/* XXX strcpy is safe */
    411  1.1  christos 		return;
    412  1.1  christos 	}
    413  1.1  christos 	/*
    414  1.1  christos          * New string is longer; see if we have enough space to append
    415  1.1  christos          */
    416  1.1  christos 	if (el->el_terminal.t_loc + 3 < TC_BUFSIZE) {
    417  1.1  christos 						/* XXX strcpy is safe */
    418  1.1  christos 		(void) strcpy(*str = &el->el_terminal.t_buf[el->el_terminal.t_loc],
    419  1.1  christos 		    cap);
    420  1.1  christos 		el->el_terminal.t_loc += (int)clen + 1;	/* one for \0 */
    421  1.1  christos 		return;
    422  1.1  christos 	}
    423  1.1  christos 	/*
    424  1.1  christos          * Compact our buffer; no need to check compaction, cause we know it
    425  1.1  christos          * fits...
    426  1.1  christos          */
    427  1.1  christos 	tlen = 0;
    428  1.1  christos 	for (tmp = tlist; tmp < &tlist[T_str]; tmp++)
    429  1.1  christos 		if (*tmp != NULL && *tmp != '\0' && *tmp != *str) {
    430  1.1  christos 			char *ptr;
    431  1.1  christos 
    432  1.1  christos 			for (ptr = *tmp; *ptr != '\0'; termbuf[tlen++] = *ptr++)
    433  1.1  christos 				continue;
    434  1.1  christos 			termbuf[tlen++] = '\0';
    435  1.1  christos 		}
    436  1.1  christos 	memcpy(el->el_terminal.t_buf, termbuf, TC_BUFSIZE);
    437  1.1  christos 	el->el_terminal.t_loc = (int)tlen;
    438  1.1  christos 	if (el->el_terminal.t_loc + 3 >= TC_BUFSIZE) {
    439  1.1  christos 		(void) fprintf(el->el_errfile,
    440  1.1  christos 		    "Out of termcap string space.\n");
    441  1.1  christos 		return;
    442  1.1  christos 	}
    443  1.1  christos 					/* XXX strcpy is safe */
    444  1.1  christos 	(void) strcpy(*str = &el->el_terminal.t_buf[el->el_terminal.t_loc], cap);
    445  1.1  christos 	el->el_terminal.t_loc += (int)clen + 1;	/* one for \0 */
    446  1.1  christos 	return;
    447  1.1  christos }
    448  1.1  christos 
    449  1.1  christos 
    450  1.1  christos /* terminal_rebuffer_display():
    451  1.1  christos  *	Rebuffer the display after the screen changed size
    452  1.1  christos  */
    453  1.1  christos private int
    454  1.1  christos terminal_rebuffer_display(EditLine *el)
    455  1.1  christos {
    456  1.1  christos 	coord_t *c = &el->el_terminal.t_size;
    457  1.1  christos 
    458  1.1  christos 	terminal_free_display(el);
    459  1.1  christos 
    460  1.1  christos 	c->h = Val(T_co);
    461  1.1  christos 	c->v = Val(T_li);
    462  1.1  christos 
    463  1.1  christos 	if (terminal_alloc_display(el) == -1)
    464  1.1  christos 		return (-1);
    465  1.1  christos 	return (0);
    466  1.1  christos }
    467  1.1  christos 
    468  1.1  christos 
    469  1.1  christos /* terminal_alloc_display():
    470  1.1  christos  *	Allocate a new display.
    471  1.1  christos  */
    472  1.1  christos private int
    473  1.1  christos terminal_alloc_display(EditLine *el)
    474  1.1  christos {
    475  1.1  christos 	int i;
    476  1.1  christos 	Char **b;
    477  1.1  christos 	coord_t *c = &el->el_terminal.t_size;
    478  1.1  christos 
    479  1.1  christos 	b =  el_malloc(sizeof(*b) * (c->v + 1));
    480  1.1  christos 	if (b == NULL)
    481  1.1  christos 		return (-1);
    482  1.1  christos 	for (i = 0; i < c->v; i++) {
    483  1.1  christos 		b[i] = el_malloc(sizeof(**b) * (c->h + 1));
    484  1.1  christos 		if (b[i] == NULL) {
    485  1.1  christos 			while (--i >= 0)
    486  1.1  christos 				el_free((ptr_t) b[i]);
    487  1.1  christos 			el_free((ptr_t) b);
    488  1.1  christos 			return (-1);
    489  1.1  christos 		}
    490  1.1  christos 	}
    491  1.1  christos 	b[c->v] = NULL;
    492  1.1  christos 	el->el_display = b;
    493  1.1  christos 
    494  1.1  christos 	b = el_malloc(sizeof(*b) * (c->v + 1));
    495  1.1  christos 	if (b == NULL)
    496  1.1  christos 		return (-1);
    497  1.1  christos 	for (i = 0; i < c->v; i++) {
    498  1.1  christos 		b[i] = el_malloc(sizeof(**b) * (c->h + 1));
    499  1.1  christos 		if (b[i] == NULL) {
    500  1.1  christos 			while (--i >= 0)
    501  1.1  christos 				el_free((ptr_t) b[i]);
    502  1.1  christos 			el_free((ptr_t) b);
    503  1.1  christos 			return (-1);
    504  1.1  christos 		}
    505  1.1  christos 	}
    506  1.1  christos 	b[c->v] = NULL;
    507  1.1  christos 	el->el_vdisplay = b;
    508  1.1  christos 	return (0);
    509  1.1  christos }
    510  1.1  christos 
    511  1.1  christos 
    512  1.1  christos /* terminal_free_display():
    513  1.1  christos  *	Free the display buffers
    514  1.1  christos  */
    515  1.1  christos private void
    516  1.1  christos terminal_free_display(EditLine *el)
    517  1.1  christos {
    518  1.1  christos 	Char **b;
    519  1.1  christos 	Char **bufp;
    520  1.1  christos 
    521  1.1  christos 	b = el->el_display;
    522  1.1  christos 	el->el_display = NULL;
    523  1.1  christos 	if (b != NULL) {
    524  1.1  christos 		for (bufp = b; *bufp != NULL; bufp++)
    525  1.1  christos 			el_free((ptr_t) *bufp);
    526  1.1  christos 		el_free((ptr_t) b);
    527  1.1  christos 	}
    528  1.1  christos 	b = el->el_vdisplay;
    529  1.1  christos 	el->el_vdisplay = NULL;
    530  1.1  christos 	if (b != NULL) {
    531  1.1  christos 		for (bufp = b; *bufp != NULL; bufp++)
    532  1.1  christos 			el_free((ptr_t) *bufp);
    533  1.1  christos 		el_free((ptr_t) b);
    534  1.1  christos 	}
    535  1.1  christos }
    536  1.1  christos 
    537  1.1  christos 
    538  1.1  christos /* terminal_move_to_line():
    539  1.1  christos  *	move to line <where> (first line == 0)
    540  1.1  christos  * 	as efficiently as possible
    541  1.1  christos  */
    542  1.1  christos protected void
    543  1.1  christos terminal_move_to_line(EditLine *el, int where)
    544  1.1  christos {
    545  1.1  christos 	int del;
    546  1.1  christos 
    547  1.1  christos 	if (where == el->el_cursor.v)
    548  1.1  christos 		return;
    549  1.1  christos 
    550  1.1  christos 	if (where > el->el_terminal.t_size.v) {
    551  1.1  christos #ifdef DEBUG_SCREEN
    552  1.1  christos 		(void) fprintf(el->el_errfile,
    553  1.1  christos 		    "terminal_move_to_line: where is ridiculous: %d\r\n", where);
    554  1.1  christos #endif /* DEBUG_SCREEN */
    555  1.1  christos 		return;
    556  1.1  christos 	}
    557  1.1  christos 	if ((del = where - el->el_cursor.v) > 0) {
    558  1.1  christos 		while (del > 0) {
    559  1.1  christos 			if (EL_HAS_AUTO_MARGINS &&
    560  1.1  christos 			    el->el_display[el->el_cursor.v][0] != '\0') {
    561  1.1  christos                                 size_t h = el->el_terminal.t_size.h - 1;
    562  1.1  christos #ifdef WIDECHAR
    563  1.1  christos                                 for (; h > 0 &&
    564  1.1  christos                                          el->el_display[el->el_cursor.v][h] ==
    565  1.1  christos                                                  MB_FILL_CHAR;
    566  1.1  christos                                          h--)
    567  1.1  christos                                                 continue;
    568  1.1  christos #endif
    569  1.1  christos 				/* move without newline */
    570  1.1  christos 				terminal_move_to_char(el, (int)h);
    571  1.1  christos 				terminal_overwrite(el, &el->el_display
    572  1.1  christos 				    [el->el_cursor.v][el->el_cursor.h],
    573  1.1  christos 				    (size_t)(el->el_terminal.t_size.h -
    574  1.1  christos 				    el->el_cursor.h));
    575  1.1  christos 				/* updates Cursor */
    576  1.1  christos 				del--;
    577  1.1  christos 			} else {
    578  1.1  christos 				if ((del > 1) && GoodStr(T_DO)) {
    579  1.1  christos 					terminal_tputs(el, tgoto(Str(T_DO), del,
    580  1.1  christos 					    del), del);
    581  1.1  christos 					del = 0;
    582  1.1  christos 				} else {
    583  1.1  christos 					for (; del > 0; del--)
    584  1.1  christos 						terminal__putc(el, '\n');
    585  1.1  christos 					/* because the \n will become \r\n */
    586  1.1  christos 					el->el_cursor.h = 0;
    587  1.1  christos 				}
    588  1.1  christos 			}
    589  1.1  christos 		}
    590  1.1  christos 	} else {		/* del < 0 */
    591  1.1  christos 		if (GoodStr(T_UP) && (-del > 1 || !GoodStr(T_up)))
    592  1.1  christos 			terminal_tputs(el, tgoto(Str(T_UP), -del, -del), -del);
    593  1.1  christos 		else {
    594  1.1  christos 			if (GoodStr(T_up))
    595  1.1  christos 				for (; del < 0; del++)
    596  1.1  christos 					terminal_tputs(el, Str(T_up), 1);
    597  1.1  christos 		}
    598  1.1  christos 	}
    599  1.1  christos 	el->el_cursor.v = where;/* now where is here */
    600  1.1  christos }
    601  1.1  christos 
    602  1.1  christos 
    603  1.1  christos /* terminal_move_to_char():
    604  1.1  christos  *	Move to the character position specified
    605  1.1  christos  */
    606  1.1  christos protected void
    607  1.1  christos terminal_move_to_char(EditLine *el, int where)
    608  1.1  christos {
    609  1.1  christos 	int del, i;
    610  1.1  christos 
    611  1.1  christos mc_again:
    612  1.1  christos 	if (where == el->el_cursor.h)
    613  1.1  christos 		return;
    614  1.1  christos 
    615  1.1  christos 	if (where > el->el_terminal.t_size.h) {
    616  1.1  christos #ifdef DEBUG_SCREEN
    617  1.1  christos 		(void) fprintf(el->el_errfile,
    618  1.1  christos 		    "terminal_move_to_char: where is riduculous: %d\r\n", where);
    619  1.1  christos #endif /* DEBUG_SCREEN */
    620  1.1  christos 		return;
    621  1.1  christos 	}
    622  1.1  christos 	if (!where) {		/* if where is first column */
    623  1.1  christos 		terminal__putc(el, '\r');	/* do a CR */
    624  1.1  christos 		el->el_cursor.h = 0;
    625  1.1  christos 		return;
    626  1.1  christos 	}
    627  1.1  christos 	del = where - el->el_cursor.h;
    628  1.1  christos 
    629  1.1  christos 	if ((del < -4 || del > 4) && GoodStr(T_ch))
    630  1.1  christos 		/* go there directly */
    631  1.1  christos 		terminal_tputs(el, tgoto(Str(T_ch), where, where), where);
    632  1.1  christos 	else {
    633  1.1  christos 		if (del > 0) {	/* moving forward */
    634  1.1  christos 			if ((del > 4) && GoodStr(T_RI))
    635  1.1  christos 				terminal_tputs(el, tgoto(Str(T_RI), del, del), del);
    636  1.1  christos 			else {
    637  1.1  christos 					/* if I can do tabs, use them */
    638  1.1  christos 				if (EL_CAN_TAB) {
    639  1.1  christos 					if ((el->el_cursor.h & 0370) !=
    640  1.1  christos 					    (where & ~0x7)
    641  1.1  christos #ifdef WIDECHAR
    642  1.1  christos 					    && (el->el_display[
    643  1.1  christos 					    el->el_cursor.v][where & 0370] !=
    644  1.1  christos 					    MB_FILL_CHAR)
    645  1.1  christos #endif
    646  1.1  christos 					    ) {
    647  1.1  christos 						/* if not within tab stop */
    648  1.1  christos 						for (i =
    649  1.1  christos 						    (el->el_cursor.h & 0370);
    650  1.1  christos 						    i < (where & ~0x7);
    651  1.1  christos 						    i += 8)
    652  1.1  christos 							terminal__putc(el, '\t');
    653  1.1  christos 							/* then tab over */
    654  1.1  christos 						el->el_cursor.h = where & ~0x7;
    655  1.1  christos 					}
    656  1.1  christos 				}
    657  1.1  christos 				/*
    658  1.1  christos 				 * it's usually cheaper to just write the
    659  1.1  christos 				 * chars, so we do.
    660  1.1  christos 				 */
    661  1.1  christos 				/*
    662  1.1  christos 				 * NOTE THAT terminal_overwrite() WILL CHANGE
    663  1.1  christos 				 * el->el_cursor.h!!!
    664  1.1  christos 				 */
    665  1.1  christos 				terminal_overwrite(el, &el->el_display[
    666  1.1  christos 				    el->el_cursor.v][el->el_cursor.h],
    667  1.1  christos 				    (size_t)(where - el->el_cursor.h));
    668  1.1  christos 
    669  1.1  christos 			}
    670  1.1  christos 		} else {	/* del < 0 := moving backward */
    671  1.1  christos 			if ((-del > 4) && GoodStr(T_LE))
    672  1.1  christos 				terminal_tputs(el, tgoto(Str(T_LE), -del, -del),
    673  1.1  christos 				    -del);
    674  1.1  christos 			else {	/* can't go directly there */
    675  1.1  christos 				/*
    676  1.1  christos 				 * if the "cost" is greater than the "cost"
    677  1.1  christos 				 * from col 0
    678  1.1  christos 				 */
    679  1.1  christos 				if (EL_CAN_TAB ?
    680  1.1  christos 				    ((unsigned int)-del >
    681  1.1  christos 				    (((unsigned int) where >> 3) +
    682  1.1  christos 				     (where & 07)))
    683  1.1  christos 				    : (-del > where)) {
    684  1.1  christos 					terminal__putc(el, '\r');	/* do a CR */
    685  1.1  christos 					el->el_cursor.h = 0;
    686  1.1  christos 					goto mc_again;	/* and try again */
    687  1.1  christos 				}
    688  1.1  christos 				for (i = 0; i < -del; i++)
    689  1.1  christos 					terminal__putc(el, '\b');
    690  1.1  christos 			}
    691  1.1  christos 		}
    692  1.1  christos 	}
    693  1.1  christos 	el->el_cursor.h = where;		/* now where is here */
    694  1.1  christos }
    695  1.1  christos 
    696  1.1  christos 
    697  1.1  christos /* terminal_overwrite():
    698  1.1  christos  *	Overstrike num characters
    699  1.1  christos  *	Assumes MB_FILL_CHARs are present to keep the column count correct
    700  1.1  christos  */
    701  1.1  christos protected void
    702  1.1  christos terminal_overwrite(EditLine *el, const Char *cp, size_t n)
    703  1.1  christos {
    704  1.1  christos 	if (n == 0)
    705  1.1  christos 		return;
    706  1.1  christos 
    707  1.1  christos 	if (n > (size_t)el->el_terminal.t_size.h) {
    708  1.1  christos #ifdef DEBUG_SCREEN
    709  1.1  christos 		(void) fprintf(el->el_errfile,
    710  1.1  christos 		    "terminal_overwrite: n is riduculous: %d\r\n", n);
    711  1.1  christos #endif /* DEBUG_SCREEN */
    712  1.1  christos 		return;
    713  1.1  christos 	}
    714  1.1  christos 
    715  1.1  christos         do {
    716  1.1  christos                 /* terminal__putc() ignores any MB_FILL_CHARs */
    717  1.1  christos                 terminal__putc(el, *cp++);
    718  1.1  christos                 el->el_cursor.h++;
    719  1.1  christos         } while (--n);
    720  1.1  christos 
    721  1.1  christos 	if (el->el_cursor.h >= el->el_terminal.t_size.h) {	/* wrap? */
    722  1.1  christos 		if (EL_HAS_AUTO_MARGINS) {	/* yes */
    723  1.1  christos 			el->el_cursor.h = 0;
    724  1.1  christos 			el->el_cursor.v++;
    725  1.1  christos 			if (EL_HAS_MAGIC_MARGINS) {
    726  1.1  christos 				/* force the wrap to avoid the "magic"
    727  1.1  christos 				 * situation */
    728  1.1  christos 				Char c;
    729  1.1  christos 				if ((c = el->el_display[el->el_cursor.v]
    730  1.1  christos 				    [el->el_cursor.h]) != '\0') {
    731  1.1  christos 					terminal_overwrite(el, &c, 1);
    732  1.1  christos #ifdef WIDECHAR
    733  1.1  christos 					while (el->el_display[el->el_cursor.v]
    734  1.1  christos 					    [el->el_cursor.h] == MB_FILL_CHAR)
    735  1.1  christos 						el->el_cursor.h++;
    736  1.1  christos #endif
    737  1.1  christos 				} else {
    738  1.1  christos 					terminal__putc(el, ' ');
    739  1.1  christos 					el->el_cursor.h = 1;
    740  1.1  christos 				}
    741  1.1  christos 			}
    742  1.1  christos 		} else		/* no wrap, but cursor stays on screen */
    743  1.1  christos 			el->el_cursor.h = el->el_terminal.t_size.h - 1;
    744  1.1  christos 	}
    745  1.1  christos }
    746  1.1  christos 
    747  1.1  christos 
    748  1.1  christos /* terminal_deletechars():
    749  1.1  christos  *	Delete num characters
    750  1.1  christos  */
    751  1.1  christos protected void
    752  1.1  christos terminal_deletechars(EditLine *el, int num)
    753  1.1  christos {
    754  1.1  christos 	if (num <= 0)
    755  1.1  christos 		return;
    756  1.1  christos 
    757  1.1  christos 	if (!EL_CAN_DELETE) {
    758  1.1  christos #ifdef DEBUG_EDIT
    759  1.1  christos 		(void) fprintf(el->el_errfile, "   ERROR: cannot delete   \n");
    760  1.1  christos #endif /* DEBUG_EDIT */
    761  1.1  christos 		return;
    762  1.1  christos 	}
    763  1.1  christos 	if (num > el->el_terminal.t_size.h) {
    764  1.1  christos #ifdef DEBUG_SCREEN
    765  1.1  christos 		(void) fprintf(el->el_errfile,
    766  1.1  christos 		    "terminal_deletechars: num is riduculous: %d\r\n", num);
    767  1.1  christos #endif /* DEBUG_SCREEN */
    768  1.1  christos 		return;
    769  1.1  christos 	}
    770  1.1  christos 	if (GoodStr(T_DC))	/* if I have multiple delete */
    771  1.1  christos 		if ((num > 1) || !GoodStr(T_dc)) {	/* if dc would be more
    772  1.1  christos 							 * expen. */
    773  1.1  christos 			terminal_tputs(el, tgoto(Str(T_DC), num, num), num);
    774  1.1  christos 			return;
    775  1.1  christos 		}
    776  1.1  christos 	if (GoodStr(T_dm))	/* if I have delete mode */
    777  1.1  christos 		terminal_tputs(el, Str(T_dm), 1);
    778  1.1  christos 
    779  1.1  christos 	if (GoodStr(T_dc))	/* else do one at a time */
    780  1.1  christos 		while (num--)
    781  1.1  christos 			terminal_tputs(el, Str(T_dc), 1);
    782  1.1  christos 
    783  1.1  christos 	if (GoodStr(T_ed))	/* if I have delete mode */
    784  1.1  christos 		terminal_tputs(el, Str(T_ed), 1);
    785  1.1  christos }
    786  1.1  christos 
    787  1.1  christos 
    788  1.1  christos /* terminal_insertwrite():
    789  1.1  christos  *	Puts terminal in insert character mode or inserts num
    790  1.1  christos  *	characters in the line
    791  1.1  christos  *      Assumes MB_FILL_CHARs are present to keep column count correct
    792  1.1  christos  */
    793  1.1  christos protected void
    794  1.1  christos terminal_insertwrite(EditLine *el, Char *cp, int num)
    795  1.1  christos {
    796  1.1  christos 	if (num <= 0)
    797  1.1  christos 		return;
    798  1.1  christos 	if (!EL_CAN_INSERT) {
    799  1.1  christos #ifdef DEBUG_EDIT
    800  1.1  christos 		(void) fprintf(el->el_errfile, "   ERROR: cannot insert   \n");
    801  1.1  christos #endif /* DEBUG_EDIT */
    802  1.1  christos 		return;
    803  1.1  christos 	}
    804  1.1  christos 	if (num > el->el_terminal.t_size.h) {
    805  1.1  christos #ifdef DEBUG_SCREEN
    806  1.1  christos 		(void) fprintf(el->el_errfile,
    807  1.1  christos 		    "StartInsert: num is riduculous: %d\r\n", num);
    808  1.1  christos #endif /* DEBUG_SCREEN */
    809  1.1  christos 		return;
    810  1.1  christos 	}
    811  1.1  christos 	if (GoodStr(T_IC))	/* if I have multiple insert */
    812  1.1  christos 		if ((num > 1) || !GoodStr(T_ic)) {
    813  1.1  christos 				/* if ic would be more expensive */
    814  1.1  christos 			terminal_tputs(el, tgoto(Str(T_IC), num, num), num);
    815  1.1  christos 			terminal_overwrite(el, cp, (size_t)num);
    816  1.1  christos 				/* this updates el_cursor.h */
    817  1.1  christos 			return;
    818  1.1  christos 		}
    819  1.1  christos 	if (GoodStr(T_im) && GoodStr(T_ei)) {	/* if I have insert mode */
    820  1.1  christos 		terminal_tputs(el, Str(T_im), 1);
    821  1.1  christos 
    822  1.1  christos 		el->el_cursor.h += num;
    823  1.1  christos 		do
    824  1.1  christos 			terminal__putc(el, *cp++);
    825  1.1  christos 		while (--num);
    826  1.1  christos 
    827  1.1  christos 		if (GoodStr(T_ip))	/* have to make num chars insert */
    828  1.1  christos 			terminal_tputs(el, Str(T_ip), 1);
    829  1.1  christos 
    830  1.1  christos 		terminal_tputs(el, Str(T_ei), 1);
    831  1.1  christos 		return;
    832  1.1  christos 	}
    833  1.1  christos 	do {
    834  1.1  christos 		if (GoodStr(T_ic))	/* have to make num chars insert */
    835  1.1  christos 			terminal_tputs(el, Str(T_ic), 1);
    836  1.1  christos 
    837  1.1  christos 		terminal__putc(el, *cp++);
    838  1.1  christos 
    839  1.1  christos 		el->el_cursor.h++;
    840  1.1  christos 
    841  1.1  christos 		if (GoodStr(T_ip))	/* have to make num chars insert */
    842  1.1  christos 			terminal_tputs(el, Str(T_ip), 1);
    843  1.1  christos 					/* pad the inserted char */
    844  1.1  christos 
    845  1.1  christos 	} while (--num);
    846  1.1  christos }
    847  1.1  christos 
    848  1.1  christos 
    849  1.1  christos /* terminal_clear_EOL():
    850  1.1  christos  *	clear to end of line.  There are num characters to clear
    851  1.1  christos  */
    852  1.1  christos protected void
    853  1.1  christos terminal_clear_EOL(EditLine *el, int num)
    854  1.1  christos {
    855  1.1  christos 	int i;
    856  1.1  christos 
    857  1.1  christos 	if (EL_CAN_CEOL && GoodStr(T_ce))
    858  1.1  christos 		terminal_tputs(el, Str(T_ce), 1);
    859  1.1  christos 	else {
    860  1.1  christos 		for (i = 0; i < num; i++)
    861  1.1  christos 			terminal__putc(el, ' ');
    862  1.1  christos 		el->el_cursor.h += num;	/* have written num spaces */
    863  1.1  christos 	}
    864  1.1  christos }
    865  1.1  christos 
    866  1.1  christos 
    867  1.1  christos /* terminal_clear_screen():
    868  1.1  christos  *	Clear the screen
    869  1.1  christos  */
    870  1.1  christos protected void
    871  1.1  christos terminal_clear_screen(EditLine *el)
    872  1.1  christos {				/* clear the whole screen and home */
    873  1.1  christos 
    874  1.1  christos 	if (GoodStr(T_cl))
    875  1.1  christos 		/* send the clear screen code */
    876  1.1  christos 		terminal_tputs(el, Str(T_cl), Val(T_li));
    877  1.1  christos 	else if (GoodStr(T_ho) && GoodStr(T_cd)) {
    878  1.1  christos 		terminal_tputs(el, Str(T_ho), Val(T_li));	/* home */
    879  1.1  christos 		/* clear to bottom of screen */
    880  1.1  christos 		terminal_tputs(el, Str(T_cd), Val(T_li));
    881  1.1  christos 	} else {
    882  1.1  christos 		terminal__putc(el, '\r');
    883  1.1  christos 		terminal__putc(el, '\n');
    884  1.1  christos 	}
    885  1.1  christos }
    886  1.1  christos 
    887  1.1  christos 
    888  1.1  christos /* terminal_beep():
    889  1.1  christos  *	Beep the way the terminal wants us
    890  1.1  christos  */
    891  1.1  christos protected void
    892  1.1  christos terminal_beep(EditLine *el)
    893  1.1  christos {
    894  1.1  christos 	if (GoodStr(T_bl))
    895  1.1  christos 		/* what termcap says we should use */
    896  1.1  christos 		terminal_tputs(el, Str(T_bl), 1);
    897  1.1  christos 	else
    898  1.1  christos 		terminal__putc(el, '\007');	/* an ASCII bell; ^G */
    899  1.1  christos }
    900  1.1  christos 
    901  1.1  christos 
    902  1.1  christos #ifdef notdef
    903  1.1  christos /* terminal_clear_to_bottom():
    904  1.1  christos  *	Clear to the bottom of the screen
    905  1.1  christos  */
    906  1.1  christos protected void
    907  1.1  christos terminal_clear_to_bottom(EditLine *el)
    908  1.1  christos {
    909  1.1  christos 	if (GoodStr(T_cd))
    910  1.1  christos 		terminal_tputs(el, Str(T_cd), Val(T_li));
    911  1.1  christos 	else if (GoodStr(T_ce))
    912  1.1  christos 		terminal_tputs(el, Str(T_ce), Val(T_li));
    913  1.1  christos }
    914  1.1  christos #endif
    915  1.1  christos 
    916  1.1  christos protected void
    917  1.1  christos terminal_get(EditLine *el, const char **term)
    918  1.1  christos {
    919  1.1  christos 	*term = el->el_terminal.t_name;
    920  1.1  christos }
    921  1.1  christos 
    922  1.1  christos 
    923  1.1  christos /* terminal_set():
    924  1.1  christos  *	Read in the terminal capabilities from the requested terminal
    925  1.1  christos  */
    926  1.1  christos protected int
    927  1.1  christos terminal_set(EditLine *el, const char *term)
    928  1.1  christos {
    929  1.1  christos 	int i;
    930  1.1  christos 	char buf[TC_BUFSIZE];
    931  1.1  christos 	char *area;
    932  1.1  christos 	const struct termcapstr *t;
    933  1.1  christos 	sigset_t oset, nset;
    934  1.1  christos 	int lins, cols;
    935  1.1  christos 
    936  1.1  christos 	(void) sigemptyset(&nset);
    937  1.1  christos 	(void) sigaddset(&nset, SIGWINCH);
    938  1.1  christos 	(void) sigprocmask(SIG_BLOCK, &nset, &oset);
    939  1.1  christos 
    940  1.1  christos 	area = buf;
    941  1.1  christos 
    942  1.1  christos 
    943  1.1  christos 	if (term == NULL)
    944  1.1  christos 		term = getenv("TERM");
    945  1.1  christos 
    946  1.1  christos 	if (!term || !term[0])
    947  1.1  christos 		term = "dumb";
    948  1.1  christos 
    949  1.1  christos 	if (strcmp(term, "emacs") == 0)
    950  1.1  christos 		el->el_flags |= EDIT_DISABLED;
    951  1.1  christos 
    952  1.1  christos 	memset(el->el_terminal.t_cap, 0, TC_BUFSIZE);
    953  1.1  christos 
    954  1.1  christos 	i = tgetent(el->el_terminal.t_cap, term);
    955  1.1  christos 
    956  1.1  christos 	if (i <= 0) {
    957  1.1  christos 		if (i == -1)
    958  1.1  christos 			(void) fprintf(el->el_errfile,
    959  1.1  christos 			    "Cannot read termcap database;\n");
    960  1.1  christos 		else if (i == 0)
    961  1.1  christos 			(void) fprintf(el->el_errfile,
    962  1.1  christos 			    "No entry for terminal type \"%s\";\n", term);
    963  1.1  christos 		(void) fprintf(el->el_errfile,
    964  1.1  christos 		    "using dumb terminal settings.\n");
    965  1.1  christos 		Val(T_co) = 80;	/* do a dumb terminal */
    966  1.1  christos 		Val(T_pt) = Val(T_km) = Val(T_li) = 0;
    967  1.1  christos 		Val(T_xt) = Val(T_MT);
    968  1.1  christos 		for (t = tstr; t->name != NULL; t++)
    969  1.1  christos 			terminal_alloc(el, t, NULL);
    970  1.1  christos 	} else {
    971  1.1  christos 		/* auto/magic margins */
    972  1.1  christos 		Val(T_am) = tgetflag("am");
    973  1.1  christos 		Val(T_xn) = tgetflag("xn");
    974  1.1  christos 		/* Can we tab */
    975  1.1  christos 		Val(T_pt) = tgetflag("pt");
    976  1.1  christos 		Val(T_xt) = tgetflag("xt");
    977  1.1  christos 		/* do we have a meta? */
    978  1.1  christos 		Val(T_km) = tgetflag("km");
    979  1.1  christos 		Val(T_MT) = tgetflag("MT");
    980  1.1  christos 		/* Get the size */
    981  1.1  christos 		Val(T_co) = tgetnum("co");
    982  1.1  christos 		Val(T_li) = tgetnum("li");
    983  1.1  christos 		for (t = tstr; t->name != NULL; t++) {
    984  1.1  christos 			/* XXX: some systems' tgetstr needs non const */
    985  1.1  christos 			terminal_alloc(el, t, tgetstr(strchr(t->name, *t->name),
    986  1.1  christos 			    &area));
    987  1.1  christos 		}
    988  1.1  christos 	}
    989  1.1  christos 
    990  1.1  christos 	if (Val(T_co) < 2)
    991  1.1  christos 		Val(T_co) = 80;	/* just in case */
    992  1.1  christos 	if (Val(T_li) < 1)
    993  1.1  christos 		Val(T_li) = 24;
    994  1.1  christos 
    995  1.1  christos 	el->el_terminal.t_size.v = Val(T_co);
    996  1.1  christos 	el->el_terminal.t_size.h = Val(T_li);
    997  1.1  christos 
    998  1.1  christos 	terminal_setflags(el);
    999  1.1  christos 
   1000  1.1  christos 				/* get the correct window size */
   1001  1.1  christos 	(void) terminal_get_size(el, &lins, &cols);
   1002  1.1  christos 	if (terminal_change_size(el, lins, cols) == -1)
   1003  1.1  christos 		return (-1);
   1004  1.1  christos 	(void) sigprocmask(SIG_SETMASK, &oset, NULL);
   1005  1.1  christos 	terminal_bind_arrow(el);
   1006  1.1  christos 	el->el_terminal.t_name = term;
   1007  1.1  christos 	return (i <= 0 ? -1 : 0);
   1008  1.1  christos }
   1009  1.1  christos 
   1010  1.1  christos 
   1011  1.1  christos /* terminal_get_size():
   1012  1.1  christos  *	Return the new window size in lines and cols, and
   1013  1.1  christos  *	true if the size was changed.
   1014  1.1  christos  */
   1015  1.1  christos protected int
   1016  1.1  christos terminal_get_size(EditLine *el, int *lins, int *cols)
   1017  1.1  christos {
   1018  1.1  christos 
   1019  1.1  christos 	*cols = Val(T_co);
   1020  1.1  christos 	*lins = Val(T_li);
   1021  1.1  christos 
   1022  1.1  christos #ifdef TIOCGWINSZ
   1023  1.1  christos 	{
   1024  1.1  christos 		struct winsize ws;
   1025  1.1  christos 		if (ioctl(el->el_infd, TIOCGWINSZ, (ioctl_t) & ws) != -1) {
   1026  1.1  christos 			if (ws.ws_col)
   1027  1.1  christos 				*cols = ws.ws_col;
   1028  1.1  christos 			if (ws.ws_row)
   1029  1.1  christos 				*lins = ws.ws_row;
   1030  1.1  christos 		}
   1031  1.1  christos 	}
   1032  1.1  christos #endif
   1033  1.1  christos #ifdef TIOCGSIZE
   1034  1.1  christos 	{
   1035  1.1  christos 		struct ttysize ts;
   1036  1.1  christos 		if (ioctl(el->el_infd, TIOCGSIZE, (ioctl_t) & ts) != -1) {
   1037  1.1  christos 			if (ts.ts_cols)
   1038  1.1  christos 				*cols = ts.ts_cols;
   1039  1.1  christos 			if (ts.ts_lines)
   1040  1.1  christos 				*lins = ts.ts_lines;
   1041  1.1  christos 		}
   1042  1.1  christos 	}
   1043  1.1  christos #endif
   1044  1.1  christos 	return (Val(T_co) != *cols || Val(T_li) != *lins);
   1045  1.1  christos }
   1046  1.1  christos 
   1047  1.1  christos 
   1048  1.1  christos /* terminal_change_size():
   1049  1.1  christos  *	Change the size of the terminal
   1050  1.1  christos  */
   1051  1.1  christos protected int
   1052  1.1  christos terminal_change_size(EditLine *el, int lins, int cols)
   1053  1.1  christos {
   1054  1.1  christos 	/*
   1055  1.1  christos          * Just in case
   1056  1.1  christos          */
   1057  1.1  christos 	Val(T_co) = (cols < 2) ? 80 : cols;
   1058  1.1  christos 	Val(T_li) = (lins < 1) ? 24 : lins;
   1059  1.1  christos 
   1060  1.1  christos 	/* re-make display buffers */
   1061  1.1  christos 	if (terminal_rebuffer_display(el) == -1)
   1062  1.1  christos 		return (-1);
   1063  1.1  christos 	re_clear_display(el);
   1064  1.1  christos 	return (0);
   1065  1.1  christos }
   1066  1.1  christos 
   1067  1.1  christos 
   1068  1.1  christos /* terminal_init_arrow():
   1069  1.1  christos  *	Initialize the arrow key bindings from termcap
   1070  1.1  christos  */
   1071  1.1  christos private void
   1072  1.1  christos terminal_init_arrow(EditLine *el)
   1073  1.1  christos {
   1074  1.2  christos 	funckey_t *arrow = el->el_terminal.t_fkey;
   1075  1.1  christos 
   1076  1.1  christos 	arrow[A_K_DN].name = STR("down");
   1077  1.1  christos 	arrow[A_K_DN].key = T_kd;
   1078  1.1  christos 	arrow[A_K_DN].fun.cmd = ED_NEXT_HISTORY;
   1079  1.1  christos 	arrow[A_K_DN].type = XK_CMD;
   1080  1.1  christos 
   1081  1.1  christos 	arrow[A_K_UP].name = STR("up");
   1082  1.1  christos 	arrow[A_K_UP].key = T_ku;
   1083  1.1  christos 	arrow[A_K_UP].fun.cmd = ED_PREV_HISTORY;
   1084  1.1  christos 	arrow[A_K_UP].type = XK_CMD;
   1085  1.1  christos 
   1086  1.1  christos 	arrow[A_K_LT].name = STR("left");
   1087  1.1  christos 	arrow[A_K_LT].key = T_kl;
   1088  1.1  christos 	arrow[A_K_LT].fun.cmd = ED_PREV_CHAR;
   1089  1.1  christos 	arrow[A_K_LT].type = XK_CMD;
   1090  1.1  christos 
   1091  1.1  christos 	arrow[A_K_RT].name = STR("right");
   1092  1.1  christos 	arrow[A_K_RT].key = T_kr;
   1093  1.1  christos 	arrow[A_K_RT].fun.cmd = ED_NEXT_CHAR;
   1094  1.1  christos 	arrow[A_K_RT].type = XK_CMD;
   1095  1.1  christos 
   1096  1.1  christos 	arrow[A_K_HO].name = STR("home");
   1097  1.1  christos 	arrow[A_K_HO].key = T_kh;
   1098  1.1  christos 	arrow[A_K_HO].fun.cmd = ED_MOVE_TO_BEG;
   1099  1.1  christos 	arrow[A_K_HO].type = XK_CMD;
   1100  1.1  christos 
   1101  1.1  christos 	arrow[A_K_EN].name = STR("end");
   1102  1.1  christos 	arrow[A_K_EN].key = T_at7;
   1103  1.1  christos 	arrow[A_K_EN].fun.cmd = ED_MOVE_TO_END;
   1104  1.1  christos 	arrow[A_K_EN].type = XK_CMD;
   1105  1.1  christos }
   1106  1.1  christos 
   1107  1.1  christos 
   1108  1.1  christos /* terminal_reset_arrow():
   1109  1.1  christos  *	Reset arrow key bindings
   1110  1.1  christos  */
   1111  1.1  christos private void
   1112  1.1  christos terminal_reset_arrow(EditLine *el)
   1113  1.1  christos {
   1114  1.2  christos 	funckey_t *arrow = el->el_terminal.t_fkey;
   1115  1.1  christos 	static const Char strA[] = {033, '[', 'A', '\0'};
   1116  1.1  christos 	static const Char strB[] = {033, '[', 'B', '\0'};
   1117  1.1  christos 	static const Char strC[] = {033, '[', 'C', '\0'};
   1118  1.1  christos 	static const Char strD[] = {033, '[', 'D', '\0'};
   1119  1.1  christos 	static const Char strH[] = {033, '[', 'H', '\0'};
   1120  1.1  christos 	static const Char strF[] = {033, '[', 'F', '\0'};
   1121  1.1  christos 	static const Char stOA[] = {033, 'O', 'A', '\0'};
   1122  1.1  christos 	static const Char stOB[] = {033, 'O', 'B', '\0'};
   1123  1.1  christos 	static const Char stOC[] = {033, 'O', 'C', '\0'};
   1124  1.1  christos 	static const Char stOD[] = {033, 'O', 'D', '\0'};
   1125  1.1  christos 	static const Char stOH[] = {033, 'O', 'H', '\0'};
   1126  1.1  christos 	static const Char stOF[] = {033, 'O', 'F', '\0'};
   1127  1.1  christos 
   1128  1.2  christos 	keymacro_add(el, strA, &arrow[A_K_UP].fun, arrow[A_K_UP].type);
   1129  1.2  christos 	keymacro_add(el, strB, &arrow[A_K_DN].fun, arrow[A_K_DN].type);
   1130  1.2  christos 	keymacro_add(el, strC, &arrow[A_K_RT].fun, arrow[A_K_RT].type);
   1131  1.2  christos 	keymacro_add(el, strD, &arrow[A_K_LT].fun, arrow[A_K_LT].type);
   1132  1.2  christos 	keymacro_add(el, strH, &arrow[A_K_HO].fun, arrow[A_K_HO].type);
   1133  1.2  christos 	keymacro_add(el, strF, &arrow[A_K_EN].fun, arrow[A_K_EN].type);
   1134  1.2  christos 	keymacro_add(el, stOA, &arrow[A_K_UP].fun, arrow[A_K_UP].type);
   1135  1.2  christos 	keymacro_add(el, stOB, &arrow[A_K_DN].fun, arrow[A_K_DN].type);
   1136  1.2  christos 	keymacro_add(el, stOC, &arrow[A_K_RT].fun, arrow[A_K_RT].type);
   1137  1.2  christos 	keymacro_add(el, stOD, &arrow[A_K_LT].fun, arrow[A_K_LT].type);
   1138  1.2  christos 	keymacro_add(el, stOH, &arrow[A_K_HO].fun, arrow[A_K_HO].type);
   1139  1.2  christos 	keymacro_add(el, stOF, &arrow[A_K_EN].fun, arrow[A_K_EN].type);
   1140  1.1  christos 
   1141  1.1  christos 	if (el->el_map.type == MAP_VI) {
   1142  1.2  christos 		keymacro_add(el, &strA[1], &arrow[A_K_UP].fun, arrow[A_K_UP].type);
   1143  1.2  christos 		keymacro_add(el, &strB[1], &arrow[A_K_DN].fun, arrow[A_K_DN].type);
   1144  1.2  christos 		keymacro_add(el, &strC[1], &arrow[A_K_RT].fun, arrow[A_K_RT].type);
   1145  1.2  christos 		keymacro_add(el, &strD[1], &arrow[A_K_LT].fun, arrow[A_K_LT].type);
   1146  1.2  christos 		keymacro_add(el, &strH[1], &arrow[A_K_HO].fun, arrow[A_K_HO].type);
   1147  1.2  christos 		keymacro_add(el, &strF[1], &arrow[A_K_EN].fun, arrow[A_K_EN].type);
   1148  1.2  christos 		keymacro_add(el, &stOA[1], &arrow[A_K_UP].fun, arrow[A_K_UP].type);
   1149  1.2  christos 		keymacro_add(el, &stOB[1], &arrow[A_K_DN].fun, arrow[A_K_DN].type);
   1150  1.2  christos 		keymacro_add(el, &stOC[1], &arrow[A_K_RT].fun, arrow[A_K_RT].type);
   1151  1.2  christos 		keymacro_add(el, &stOD[1], &arrow[A_K_LT].fun, arrow[A_K_LT].type);
   1152  1.2  christos 		keymacro_add(el, &stOH[1], &arrow[A_K_HO].fun, arrow[A_K_HO].type);
   1153  1.2  christos 		keymacro_add(el, &stOF[1], &arrow[A_K_EN].fun, arrow[A_K_EN].type);
   1154  1.1  christos 	}
   1155  1.1  christos }
   1156  1.1  christos 
   1157  1.1  christos 
   1158  1.1  christos /* terminal_set_arrow():
   1159  1.1  christos  *	Set an arrow key binding
   1160  1.1  christos  */
   1161  1.1  christos protected int
   1162  1.2  christos terminal_set_arrow(EditLine *el, const Char *name, keymacro_value_t *fun, int type)
   1163  1.1  christos {
   1164  1.2  christos 	funckey_t *arrow = el->el_terminal.t_fkey;
   1165  1.1  christos 	int i;
   1166  1.1  christos 
   1167  1.1  christos 	for (i = 0; i < A_K_NKEYS; i++)
   1168  1.1  christos 		if (Strcmp(name, arrow[i].name) == 0) {
   1169  1.1  christos 			arrow[i].fun = *fun;
   1170  1.1  christos 			arrow[i].type = type;
   1171  1.1  christos 			return (0);
   1172  1.1  christos 		}
   1173  1.1  christos 	return (-1);
   1174  1.1  christos }
   1175  1.1  christos 
   1176  1.1  christos 
   1177  1.1  christos /* terminal_clear_arrow():
   1178  1.1  christos  *	Clear an arrow key binding
   1179  1.1  christos  */
   1180  1.1  christos protected int
   1181  1.1  christos terminal_clear_arrow(EditLine *el, const Char *name)
   1182  1.1  christos {
   1183  1.2  christos 	funckey_t *arrow = el->el_terminal.t_fkey;
   1184  1.1  christos 	int i;
   1185  1.1  christos 
   1186  1.1  christos 	for (i = 0; i < A_K_NKEYS; i++)
   1187  1.1  christos 		if (Strcmp(name, arrow[i].name) == 0) {
   1188  1.1  christos 			arrow[i].type = XK_NOD;
   1189  1.1  christos 			return (0);
   1190  1.1  christos 		}
   1191  1.1  christos 	return (-1);
   1192  1.1  christos }
   1193  1.1  christos 
   1194  1.1  christos 
   1195  1.1  christos /* terminal_print_arrow():
   1196  1.1  christos  *	Print the arrow key bindings
   1197  1.1  christos  */
   1198  1.1  christos protected void
   1199  1.1  christos terminal_print_arrow(EditLine *el, const Char *name)
   1200  1.1  christos {
   1201  1.1  christos 	int i;
   1202  1.2  christos 	funckey_t *arrow = el->el_terminal.t_fkey;
   1203  1.1  christos 
   1204  1.1  christos 	for (i = 0; i < A_K_NKEYS; i++)
   1205  1.1  christos 		if (*name == '\0' || Strcmp(name, arrow[i].name) == 0)
   1206  1.1  christos 			if (arrow[i].type != XK_NOD)
   1207  1.2  christos 				keymacro_kprint(el, arrow[i].name, &arrow[i].fun,
   1208  1.1  christos 				    arrow[i].type);
   1209  1.1  christos }
   1210  1.1  christos 
   1211  1.1  christos 
   1212  1.1  christos /* terminal_bind_arrow():
   1213  1.1  christos  *	Bind the arrow keys
   1214  1.1  christos  */
   1215  1.1  christos protected void
   1216  1.1  christos terminal_bind_arrow(EditLine *el)
   1217  1.1  christos {
   1218  1.1  christos 	el_action_t *map;
   1219  1.1  christos 	const el_action_t *dmap;
   1220  1.1  christos 	int i, j;
   1221  1.1  christos 	char *p;
   1222  1.2  christos 	funckey_t *arrow = el->el_terminal.t_fkey;
   1223  1.1  christos 
   1224  1.1  christos 	/* Check if the components needed are initialized */
   1225  1.1  christos 	if (el->el_terminal.t_buf == NULL || el->el_map.key == NULL)
   1226  1.1  christos 		return;
   1227  1.1  christos 
   1228  1.1  christos 	map = el->el_map.type == MAP_VI ? el->el_map.alt : el->el_map.key;
   1229  1.1  christos 	dmap = el->el_map.type == MAP_VI ? el->el_map.vic : el->el_map.emacs;
   1230  1.1  christos 
   1231  1.1  christos 	terminal_reset_arrow(el);
   1232  1.1  christos 
   1233  1.1  christos 	for (i = 0; i < A_K_NKEYS; i++) {
   1234  1.1  christos 		Char wt_str[VISUAL_WIDTH_MAX];
   1235  1.1  christos 		Char *px;
   1236  1.1  christos 		size_t n;
   1237  1.1  christos 
   1238  1.1  christos 		p = el->el_terminal.t_str[arrow[i].key];
   1239  1.1  christos 		if (!p || !*p)
   1240  1.1  christos 			continue;
   1241  1.1  christos 		for (n = 0; n < VISUAL_WIDTH_MAX && p[n]; ++n)
   1242  1.1  christos 			wt_str[n] = p[n];
   1243  1.1  christos 		while (n < VISUAL_WIDTH_MAX)
   1244  1.1  christos 			wt_str[n++] = '\0';
   1245  1.1  christos 		px = wt_str;
   1246  1.1  christos 		j = (unsigned char) *p;
   1247  1.1  christos 		/*
   1248  1.1  christos 		 * Assign the arrow keys only if:
   1249  1.1  christos 		 *
   1250  1.1  christos 		 * 1. They are multi-character arrow keys and the user
   1251  1.1  christos 		 *    has not re-assigned the leading character, or
   1252  1.1  christos 		 *    has re-assigned the leading character to be
   1253  1.1  christos 		 *	  ED_SEQUENCE_LEAD_IN
   1254  1.1  christos 		 * 2. They are single arrow keys pointing to an
   1255  1.1  christos 		 *    unassigned key.
   1256  1.1  christos 		 */
   1257  1.1  christos 		if (arrow[i].type == XK_NOD)
   1258  1.2  christos 			keymacro_clear(el, map, px);
   1259  1.1  christos 		else {
   1260  1.1  christos 			if (p[1] && (dmap[j] == map[j] ||
   1261  1.1  christos 				map[j] == ED_SEQUENCE_LEAD_IN)) {
   1262  1.2  christos 				keymacro_add(el, px, &arrow[i].fun,
   1263  1.1  christos 				    arrow[i].type);
   1264  1.1  christos 				map[j] = ED_SEQUENCE_LEAD_IN;
   1265  1.1  christos 			} else if (map[j] == ED_UNASSIGNED) {
   1266  1.2  christos 				keymacro_clear(el, map, px);
   1267  1.1  christos 				if (arrow[i].type == XK_CMD)
   1268  1.1  christos 					map[j] = arrow[i].fun.cmd;
   1269  1.1  christos 				else
   1270  1.2  christos 					keymacro_add(el, px, &arrow[i].fun,
   1271  1.1  christos 					    arrow[i].type);
   1272  1.1  christos 			}
   1273  1.1  christos 		}
   1274  1.1  christos 	}
   1275  1.1  christos }
   1276  1.1  christos 
   1277  1.1  christos /* terminal_putc():
   1278  1.1  christos  *	Add a character
   1279  1.1  christos  */
   1280  1.1  christos private int
   1281  1.1  christos terminal_putc(int c)
   1282  1.1  christos {
   1283  1.1  christos 	if (terminal_outfile == NULL)
   1284  1.1  christos 		return -1;
   1285  1.1  christos 	return fputc(c, terminal_outfile);
   1286  1.1  christos }
   1287  1.1  christos 
   1288  1.1  christos private void
   1289  1.1  christos terminal_tputs(EditLine *el, const char *cap, int affcnt)
   1290  1.1  christos {
   1291  1.1  christos #ifdef _REENTRANT
   1292  1.1  christos 	pthread_mutex_lock(&terminal_mutex);
   1293  1.1  christos #endif
   1294  1.1  christos 	terminal_outfile = el->el_outfile;
   1295  1.1  christos 	(void)tputs(cap, affcnt, terminal_putc);
   1296  1.1  christos #ifdef _REENTRANT
   1297  1.1  christos 	pthread_mutex_unlock(&terminal_mutex);
   1298  1.1  christos #endif
   1299  1.1  christos }
   1300  1.1  christos 
   1301  1.1  christos /* terminal__putc():
   1302  1.1  christos  *	Add a character
   1303  1.1  christos  */
   1304  1.1  christos protected int
   1305  1.1  christos terminal__putc(EditLine *el, Int c)
   1306  1.1  christos {
   1307  1.1  christos 	char buf[MB_LEN_MAX +1];
   1308  1.1  christos 	ssize_t i;
   1309  1.1  christos 	if (c == MB_FILL_CHAR)
   1310  1.1  christos 		return 0;
   1311  1.1  christos 	i = ct_encode_char(buf, MB_LEN_MAX, c);
   1312  1.1  christos 	if (i <= 0)
   1313  1.1  christos 		return (int)i;
   1314  1.1  christos 	buf[i] = '\0';
   1315  1.1  christos 	return fputs(buf, el->el_outfile);
   1316  1.1  christos }
   1317  1.1  christos 
   1318  1.1  christos /* terminal__flush():
   1319  1.1  christos  *	Flush output
   1320  1.1  christos  */
   1321  1.1  christos protected void
   1322  1.1  christos terminal__flush(EditLine *el)
   1323  1.1  christos {
   1324  1.1  christos 
   1325  1.1  christos 	(void) fflush(el->el_outfile);
   1326  1.1  christos }
   1327  1.1  christos 
   1328  1.1  christos /* terminal_writec():
   1329  1.1  christos  *	Write the given character out, in a human readable form
   1330  1.1  christos  */
   1331  1.1  christos protected void
   1332  1.1  christos terminal_writec(EditLine *el, Int c)
   1333  1.1  christos {
   1334  1.1  christos 	Char visbuf[VISUAL_WIDTH_MAX +1];
   1335  1.1  christos 	ssize_t vcnt = ct_visual_char(visbuf, VISUAL_WIDTH_MAX, c);
   1336  1.1  christos 	visbuf[vcnt] = '\0';
   1337  1.1  christos 	terminal_overwrite(el, visbuf, (size_t)vcnt);
   1338  1.1  christos 	terminal__flush(el);
   1339  1.1  christos }
   1340  1.1  christos 
   1341  1.1  christos 
   1342  1.1  christos /* terminal_telltc():
   1343  1.1  christos  *	Print the current termcap characteristics
   1344  1.1  christos  */
   1345  1.1  christos protected int
   1346  1.1  christos /*ARGSUSED*/
   1347  1.1  christos terminal_telltc(EditLine *el, int argc __attribute__((__unused__)),
   1348  1.1  christos     const Char **argv __attribute__((__unused__)))
   1349  1.1  christos {
   1350  1.1  christos 	const struct termcapstr *t;
   1351  1.1  christos 	char **ts;
   1352  1.1  christos 
   1353  1.1  christos 	(void) fprintf(el->el_outfile, "\n\tYour terminal has the\n");
   1354  1.1  christos 	(void) fprintf(el->el_outfile, "\tfollowing characteristics:\n\n");
   1355  1.1  christos 	(void) fprintf(el->el_outfile, "\tIt has %d columns and %d lines\n",
   1356  1.1  christos 	    Val(T_co), Val(T_li));
   1357  1.1  christos 	(void) fprintf(el->el_outfile,
   1358  1.1  christos 	    "\tIt has %s meta key\n", EL_HAS_META ? "a" : "no");
   1359  1.1  christos 	(void) fprintf(el->el_outfile,
   1360  1.1  christos 	    "\tIt can%suse tabs\n", EL_CAN_TAB ? " " : "not ");
   1361  1.1  christos 	(void) fprintf(el->el_outfile, "\tIt %s automatic margins\n",
   1362  1.1  christos 	    EL_HAS_AUTO_MARGINS ? "has" : "does not have");
   1363  1.1  christos 	if (EL_HAS_AUTO_MARGINS)
   1364  1.1  christos 		(void) fprintf(el->el_outfile, "\tIt %s magic margins\n",
   1365  1.1  christos 		    EL_HAS_MAGIC_MARGINS ? "has" : "does not have");
   1366  1.1  christos 
   1367  1.1  christos 	for (t = tstr, ts = el->el_terminal.t_str; t->name != NULL; t++, ts++) {
   1368  1.1  christos 		const char *ub;
   1369  1.1  christos 		if (*ts && **ts) {
   1370  1.1  christos 			ub = ct_encode_string(ct_visual_string(
   1371  1.1  christos 			    ct_decode_string(*ts, &el->el_scratch)),
   1372  1.1  christos 			    &el->el_scratch);
   1373  1.1  christos 		} else {
   1374  1.1  christos 			ub = "(empty)";
   1375  1.1  christos 		}
   1376  1.1  christos 		(void) fprintf(el->el_outfile, "\t%25s (%s) == %s\n",
   1377  1.1  christos 		    t->long_name, t->name, ub);
   1378  1.1  christos 	}
   1379  1.1  christos 	(void) fputc('\n', el->el_outfile);
   1380  1.1  christos 	return (0);
   1381  1.1  christos }
   1382  1.1  christos 
   1383  1.1  christos 
   1384  1.1  christos /* terminal_settc():
   1385  1.1  christos  *	Change the current terminal characteristics
   1386  1.1  christos  */
   1387  1.1  christos protected int
   1388  1.1  christos /*ARGSUSED*/
   1389  1.1  christos terminal_settc(EditLine *el, int argc __attribute__((__unused__)),
   1390  1.1  christos     const Char **argv)
   1391  1.1  christos {
   1392  1.1  christos 	const struct termcapstr *ts;
   1393  1.1  christos 	const struct termcapval *tv;
   1394  1.1  christos 	char what[8], how[8];
   1395  1.1  christos 
   1396  1.1  christos 	if (argv == NULL || argv[1] == NULL || argv[2] == NULL)
   1397  1.1  christos 		return -1;
   1398  1.1  christos 
   1399  1.1  christos 	strncpy(what, ct_encode_string(argv[1], &el->el_scratch), sizeof(what));
   1400  1.1  christos 	what[sizeof(what) - 1] = '\0';
   1401  1.1  christos 	strncpy(how,  ct_encode_string(argv[2], &el->el_scratch), sizeof(how));
   1402  1.1  christos 	how[sizeof(how) - 1] = '\0';
   1403  1.1  christos 
   1404  1.1  christos 	/*
   1405  1.1  christos          * Do the strings first
   1406  1.1  christos          */
   1407  1.1  christos 	for (ts = tstr; ts->name != NULL; ts++)
   1408  1.1  christos 		if (strcmp(ts->name, what) == 0)
   1409  1.1  christos 			break;
   1410  1.1  christos 
   1411  1.1  christos 	if (ts->name != NULL) {
   1412  1.1  christos 		terminal_alloc(el, ts, how);
   1413  1.1  christos 		terminal_setflags(el);
   1414  1.1  christos 		return 0;
   1415  1.1  christos 	}
   1416  1.1  christos 	/*
   1417  1.1  christos          * Do the numeric ones second
   1418  1.1  christos          */
   1419  1.1  christos 	for (tv = tval; tv->name != NULL; tv++)
   1420  1.1  christos 		if (strcmp(tv->name, what) == 0)
   1421  1.1  christos 			break;
   1422  1.1  christos 
   1423  1.1  christos 	if (tv->name != NULL)
   1424  1.1  christos 		return -1;
   1425  1.1  christos 
   1426  1.1  christos 	if (tv == &tval[T_pt] || tv == &tval[T_km] ||
   1427  1.1  christos 	    tv == &tval[T_am] || tv == &tval[T_xn]) {
   1428  1.1  christos 		if (strcmp(how, "yes") == 0)
   1429  1.1  christos 			el->el_terminal.t_val[tv - tval] = 1;
   1430  1.1  christos 		else if (strcmp(how, "no") == 0)
   1431  1.1  christos 			el->el_terminal.t_val[tv - tval] = 0;
   1432  1.1  christos 		else {
   1433  1.1  christos 			(void) fprintf(el->el_errfile,
   1434  1.1  christos 			    "" FSTR ": Bad value `%s'.\n", argv[0], how);
   1435  1.1  christos 			return -1;
   1436  1.1  christos 		}
   1437  1.1  christos 		terminal_setflags(el);
   1438  1.1  christos 		if (terminal_change_size(el, Val(T_li), Val(T_co)) == -1)
   1439  1.1  christos 			return -1;
   1440  1.1  christos 		return 0;
   1441  1.1  christos 	} else {
   1442  1.1  christos 		long i;
   1443  1.1  christos 		char *ep;
   1444  1.1  christos 
   1445  1.1  christos 		i = strtol(how, &ep, 10);
   1446  1.1  christos 		if (*ep != '\0') {
   1447  1.1  christos 			(void) fprintf(el->el_errfile,
   1448  1.1  christos 			    "" FSTR ": Bad value `%s'.\n", argv[0], how);
   1449  1.1  christos 			return -1;
   1450  1.1  christos 		}
   1451  1.1  christos 		el->el_terminal.t_val[tv - tval] = (int) i;
   1452  1.1  christos 		el->el_terminal.t_size.v = Val(T_co);
   1453  1.1  christos 		el->el_terminal.t_size.h = Val(T_li);
   1454  1.1  christos 		if (tv == &tval[T_co] || tv == &tval[T_li])
   1455  1.1  christos 			if (terminal_change_size(el, Val(T_li), Val(T_co))
   1456  1.1  christos 			    == -1)
   1457  1.1  christos 				return -1;
   1458  1.1  christos 		return 0;
   1459  1.1  christos 	}
   1460  1.1  christos }
   1461  1.1  christos 
   1462  1.1  christos 
   1463  1.1  christos /* terminal_gettc():
   1464  1.1  christos  *	Get the current terminal characteristics
   1465  1.1  christos  */
   1466  1.1  christos protected int
   1467  1.1  christos /*ARGSUSED*/
   1468  1.1  christos terminal_gettc(EditLine *el, int argc __attribute__((__unused__)), char **argv)
   1469  1.1  christos {
   1470  1.1  christos 	const struct termcapstr *ts;
   1471  1.1  christos 	const struct termcapval *tv;
   1472  1.1  christos 	char *what;
   1473  1.1  christos 	void *how;
   1474  1.1  christos 
   1475  1.1  christos 	if (argv == NULL || argv[1] == NULL || argv[2] == NULL)
   1476  1.1  christos 		return (-1);
   1477  1.1  christos 
   1478  1.1  christos 	what = argv[1];
   1479  1.1  christos 	how = argv[2];
   1480  1.1  christos 
   1481  1.1  christos 	/*
   1482  1.1  christos          * Do the strings first
   1483  1.1  christos          */
   1484  1.1  christos 	for (ts = tstr; ts->name != NULL; ts++)
   1485  1.1  christos 		if (strcmp(ts->name, what) == 0)
   1486  1.1  christos 			break;
   1487  1.1  christos 
   1488  1.1  christos 	if (ts->name != NULL) {
   1489  1.1  christos 		*(char **)how = el->el_terminal.t_str[ts - tstr];
   1490  1.1  christos 		return 0;
   1491  1.1  christos 	}
   1492  1.1  christos 	/*
   1493  1.1  christos          * Do the numeric ones second
   1494  1.1  christos          */
   1495  1.1  christos 	for (tv = tval; tv->name != NULL; tv++)
   1496  1.1  christos 		if (strcmp(tv->name, what) == 0)
   1497  1.1  christos 			break;
   1498  1.1  christos 
   1499  1.1  christos 	if (tv->name == NULL)
   1500  1.1  christos 		return -1;
   1501  1.1  christos 
   1502  1.1  christos 	if (tv == &tval[T_pt] || tv == &tval[T_km] ||
   1503  1.1  christos 	    tv == &tval[T_am] || tv == &tval[T_xn]) {
   1504  1.1  christos 		static char yes[] = "yes";
   1505  1.1  christos 		static char no[] = "no";
   1506  1.1  christos 		if (el->el_terminal.t_val[tv - tval])
   1507  1.1  christos 			*(char **)how = yes;
   1508  1.1  christos 		else
   1509  1.1  christos 			*(char **)how = no;
   1510  1.1  christos 		return 0;
   1511  1.1  christos 	} else {
   1512  1.1  christos 		*(int *)how = el->el_terminal.t_val[tv - tval];
   1513  1.1  christos 		return 0;
   1514  1.1  christos 	}
   1515  1.1  christos }
   1516  1.1  christos 
   1517  1.1  christos /* terminal_echotc():
   1518  1.1  christos  *	Print the termcap string out with variable substitution
   1519  1.1  christos  */
   1520  1.1  christos protected int
   1521  1.1  christos /*ARGSUSED*/
   1522  1.1  christos terminal_echotc(EditLine *el, int argc __attribute__((__unused__)),
   1523  1.1  christos     const Char **argv)
   1524  1.1  christos {
   1525  1.1  christos 	char *cap, *scap;
   1526  1.1  christos 	Char *ep;
   1527  1.1  christos 	int arg_need, arg_cols, arg_rows;
   1528  1.1  christos 	int verbose = 0, silent = 0;
   1529  1.1  christos 	char *area;
   1530  1.1  christos 	static const char fmts[] = "%s\n", fmtd[] = "%d\n";
   1531  1.1  christos 	const struct termcapstr *t;
   1532  1.1  christos 	char buf[TC_BUFSIZE];
   1533  1.1  christos 	long i;
   1534  1.1  christos 
   1535  1.1  christos 	area = buf;
   1536  1.1  christos 
   1537  1.1  christos 	if (argv == NULL || argv[1] == NULL)
   1538  1.1  christos 		return (-1);
   1539  1.1  christos 	argv++;
   1540  1.1  christos 
   1541  1.1  christos 	if (argv[0][0] == '-') {
   1542  1.1  christos 		switch (argv[0][1]) {
   1543  1.1  christos 		case 'v':
   1544  1.1  christos 			verbose = 1;
   1545  1.1  christos 			break;
   1546  1.1  christos 		case 's':
   1547  1.1  christos 			silent = 1;
   1548  1.1  christos 			break;
   1549  1.1  christos 		default:
   1550  1.1  christos 			/* stderror(ERR_NAME | ERR_TCUSAGE); */
   1551  1.1  christos 			break;
   1552  1.1  christos 		}
   1553  1.1  christos 		argv++;
   1554  1.1  christos 	}
   1555  1.1  christos 	if (!*argv || *argv[0] == '\0')
   1556  1.1  christos 		return (0);
   1557  1.1  christos 	if (Strcmp(*argv, STR("tabs")) == 0) {
   1558  1.1  christos 		(void) fprintf(el->el_outfile, fmts, EL_CAN_TAB ? "yes" : "no");
   1559  1.1  christos 		return (0);
   1560  1.1  christos 	} else if (Strcmp(*argv, STR("meta")) == 0) {
   1561  1.1  christos 		(void) fprintf(el->el_outfile, fmts, Val(T_km) ? "yes" : "no");
   1562  1.1  christos 		return (0);
   1563  1.1  christos 	} else if (Strcmp(*argv, STR("xn")) == 0) {
   1564  1.1  christos 		(void) fprintf(el->el_outfile, fmts, EL_HAS_MAGIC_MARGINS ?
   1565  1.1  christos 		    "yes" : "no");
   1566  1.1  christos 		return (0);
   1567  1.1  christos 	} else if (Strcmp(*argv, STR("am")) == 0) {
   1568  1.1  christos 		(void) fprintf(el->el_outfile, fmts, EL_HAS_AUTO_MARGINS ?
   1569  1.1  christos 		    "yes" : "no");
   1570  1.1  christos 		return (0);
   1571  1.1  christos 	} else if (Strcmp(*argv, STR("baud")) == 0) {
   1572  1.1  christos #ifdef notdef
   1573  1.1  christos 		int i;
   1574  1.1  christos 
   1575  1.1  christos 		for (i = 0; baud_rate[i].b_name != NULL; i++)
   1576  1.1  christos 			if (el->el_tty.t_speed == baud_rate[i].b_rate) {
   1577  1.1  christos 				(void) fprintf(el->el_outfile, fmts,
   1578  1.1  christos 				    baud_rate[i].b_name);
   1579  1.1  christos 				return (0);
   1580  1.1  christos 			}
   1581  1.1  christos 		(void) fprintf(el->el_outfile, fmtd, 0);
   1582  1.1  christos #else
   1583  1.1  christos 		(void) fprintf(el->el_outfile, fmtd, (int)el->el_tty.t_speed);
   1584  1.1  christos #endif
   1585  1.1  christos 		return (0);
   1586  1.1  christos 	} else if (Strcmp(*argv, STR("rows")) == 0 ||
   1587  1.1  christos                    Strcmp(*argv, STR("lines")) == 0) {
   1588  1.1  christos 		(void) fprintf(el->el_outfile, fmtd, Val(T_li));
   1589  1.1  christos 		return (0);
   1590  1.1  christos 	} else if (Strcmp(*argv, STR("cols")) == 0) {
   1591  1.1  christos 		(void) fprintf(el->el_outfile, fmtd, Val(T_co));
   1592  1.1  christos 		return (0);
   1593  1.1  christos 	}
   1594  1.1  christos 	/*
   1595  1.1  christos          * Try to use our local definition first
   1596  1.1  christos          */
   1597  1.1  christos 	scap = NULL;
   1598  1.1  christos 	for (t = tstr; t->name != NULL; t++)
   1599  1.1  christos 		if (strcmp(t->name,
   1600  1.1  christos 		    ct_encode_string(*argv, &el->el_scratch)) == 0) {
   1601  1.1  christos 			scap = el->el_terminal.t_str[t - tstr];
   1602  1.1  christos 			break;
   1603  1.1  christos 		}
   1604  1.1  christos 	if (t->name == NULL) {
   1605  1.1  christos 		/* XXX: some systems' tgetstr needs non const */
   1606  1.1  christos                 scap = tgetstr(ct_encode_string(*argv, &el->el_scratch), &area);
   1607  1.1  christos 	}
   1608  1.1  christos 	if (!scap || scap[0] == '\0') {
   1609  1.1  christos 		if (!silent)
   1610  1.1  christos 			(void) fprintf(el->el_errfile,
   1611  1.1  christos 			    "echotc: Termcap parameter `" FSTR "' not found.\n",
   1612  1.1  christos 			    *argv);
   1613  1.1  christos 		return (-1);
   1614  1.1  christos 	}
   1615  1.1  christos 	/*
   1616  1.1  christos          * Count home many values we need for this capability.
   1617  1.1  christos          */
   1618  1.1  christos 	for (cap = scap, arg_need = 0; *cap; cap++)
   1619  1.1  christos 		if (*cap == '%')
   1620  1.1  christos 			switch (*++cap) {
   1621  1.1  christos 			case 'd':
   1622  1.1  christos 			case '2':
   1623  1.1  christos 			case '3':
   1624  1.1  christos 			case '.':
   1625  1.1  christos 			case '+':
   1626  1.1  christos 				arg_need++;
   1627  1.1  christos 				break;
   1628  1.1  christos 			case '%':
   1629  1.1  christos 			case '>':
   1630  1.1  christos 			case 'i':
   1631  1.1  christos 			case 'r':
   1632  1.1  christos 			case 'n':
   1633  1.1  christos 			case 'B':
   1634  1.1  christos 			case 'D':
   1635  1.1  christos 				break;
   1636  1.1  christos 			default:
   1637  1.1  christos 				/*
   1638  1.1  christos 				 * hpux has lot's of them...
   1639  1.1  christos 				 */
   1640  1.1  christos 				if (verbose)
   1641  1.1  christos 					(void) fprintf(el->el_errfile,
   1642  1.1  christos 				"echotc: Warning: unknown termcap %% `%c'.\n",
   1643  1.1  christos 					    *cap);
   1644  1.1  christos 				/* This is bad, but I won't complain */
   1645  1.1  christos 				break;
   1646  1.1  christos 			}
   1647  1.1  christos 
   1648  1.1  christos 	switch (arg_need) {
   1649  1.1  christos 	case 0:
   1650  1.1  christos 		argv++;
   1651  1.1  christos 		if (*argv && *argv[0]) {
   1652  1.1  christos 			if (!silent)
   1653  1.1  christos 				(void) fprintf(el->el_errfile,
   1654  1.1  christos 				    "echotc: Warning: Extra argument `" FSTR "'.\n",
   1655  1.1  christos 				    *argv);
   1656  1.1  christos 			return (-1);
   1657  1.1  christos 		}
   1658  1.1  christos 		terminal_tputs(el, scap, 1);
   1659  1.1  christos 		break;
   1660  1.1  christos 	case 1:
   1661  1.1  christos 		argv++;
   1662  1.1  christos 		if (!*argv || *argv[0] == '\0') {
   1663  1.1  christos 			if (!silent)
   1664  1.1  christos 				(void) fprintf(el->el_errfile,
   1665  1.1  christos 				    "echotc: Warning: Missing argument.\n");
   1666  1.1  christos 			return (-1);
   1667  1.1  christos 		}
   1668  1.1  christos 		arg_cols = 0;
   1669  1.1  christos 		i = Strtol(*argv, &ep, 10);
   1670  1.1  christos 		if (*ep != '\0' || i < 0) {
   1671  1.1  christos 			if (!silent)
   1672  1.1  christos 				(void) fprintf(el->el_errfile,
   1673  1.1  christos 				    "echotc: Bad value `" FSTR "' for rows.\n",
   1674  1.1  christos 				    *argv);
   1675  1.1  christos 			return (-1);
   1676  1.1  christos 		}
   1677  1.1  christos 		arg_rows = (int) i;
   1678  1.1  christos 		argv++;
   1679  1.1  christos 		if (*argv && *argv[0]) {
   1680  1.1  christos 			if (!silent)
   1681  1.1  christos 				(void) fprintf(el->el_errfile,
   1682  1.1  christos 				    "echotc: Warning: Extra argument `" FSTR "'.\n",
   1683  1.1  christos 				    *argv);
   1684  1.1  christos 			return (-1);
   1685  1.1  christos 		}
   1686  1.1  christos 		terminal_tputs(el, tgoto(scap, arg_cols, arg_rows), 1);
   1687  1.1  christos 		break;
   1688  1.1  christos 	default:
   1689  1.1  christos 		/* This is wrong, but I will ignore it... */
   1690  1.1  christos 		if (verbose)
   1691  1.1  christos 			(void) fprintf(el->el_errfile,
   1692  1.1  christos 			 "echotc: Warning: Too many required arguments (%d).\n",
   1693  1.1  christos 			    arg_need);
   1694  1.1  christos 		/* FALLTHROUGH */
   1695  1.1  christos 	case 2:
   1696  1.1  christos 		argv++;
   1697  1.1  christos 		if (!*argv || *argv[0] == '\0') {
   1698  1.1  christos 			if (!silent)
   1699  1.1  christos 				(void) fprintf(el->el_errfile,
   1700  1.1  christos 				    "echotc: Warning: Missing argument.\n");
   1701  1.1  christos 			return (-1);
   1702  1.1  christos 		}
   1703  1.1  christos 		i = Strtol(*argv, &ep, 10);
   1704  1.1  christos 		if (*ep != '\0' || i < 0) {
   1705  1.1  christos 			if (!silent)
   1706  1.1  christos 				(void) fprintf(el->el_errfile,
   1707  1.1  christos 				    "echotc: Bad value `" FSTR "' for cols.\n",
   1708  1.1  christos 				    *argv);
   1709  1.1  christos 			return (-1);
   1710  1.1  christos 		}
   1711  1.1  christos 		arg_cols = (int) i;
   1712  1.1  christos 		argv++;
   1713  1.1  christos 		if (!*argv || *argv[0] == '\0') {
   1714  1.1  christos 			if (!silent)
   1715  1.1  christos 				(void) fprintf(el->el_errfile,
   1716  1.1  christos 				    "echotc: Warning: Missing argument.\n");
   1717  1.1  christos 			return (-1);
   1718  1.1  christos 		}
   1719  1.1  christos 		i = Strtol(*argv, &ep, 10);
   1720  1.1  christos 		if (*ep != '\0' || i < 0) {
   1721  1.1  christos 			if (!silent)
   1722  1.1  christos 				(void) fprintf(el->el_errfile,
   1723  1.1  christos 				    "echotc: Bad value `" FSTR "' for rows.\n",
   1724  1.1  christos 				    *argv);
   1725  1.1  christos 			return (-1);
   1726  1.1  christos 		}
   1727  1.1  christos 		arg_rows = (int) i;
   1728  1.1  christos 		if (*ep != '\0') {
   1729  1.1  christos 			if (!silent)
   1730  1.1  christos 				(void) fprintf(el->el_errfile,
   1731  1.1  christos 				    "echotc: Bad value `" FSTR "'.\n", *argv);
   1732  1.1  christos 			return (-1);
   1733  1.1  christos 		}
   1734  1.1  christos 		argv++;
   1735  1.1  christos 		if (*argv && *argv[0]) {
   1736  1.1  christos 			if (!silent)
   1737  1.1  christos 				(void) fprintf(el->el_errfile,
   1738  1.1  christos 				    "echotc: Warning: Extra argument `" FSTR "'.\n",
   1739  1.1  christos 				    *argv);
   1740  1.1  christos 			return (-1);
   1741  1.1  christos 		}
   1742  1.1  christos 		terminal_tputs(el, tgoto(scap, arg_cols, arg_rows), arg_rows);
   1743  1.1  christos 		break;
   1744  1.1  christos 	}
   1745  1.1  christos 	return (0);
   1746  1.1  christos }
   1747