Home | History | Annotate | Line # | Download | only in ksh
emacs.c revision 1.28
      1  1.28    rillig /*	$NetBSD: emacs.c,v 1.28 2005/05/23 08:03:25 rillig Exp $	*/
      2   1.2       tls 
      3   1.1       jtc /*
      4   1.1       jtc  *  Emacs-like command line editing and history
      5   1.1       jtc  *
      6   1.1       jtc  *  created by Ron Natalie at BRL
      7   1.1       jtc  *  modified by Doug Kingston, Doug Gwyn, and Lou Salkind
      8   1.1       jtc  *  adapted to PD ksh by Eric Gisin
      9   1.1       jtc  */
     10  1.16       agc #include <sys/cdefs.h>
     11  1.16       agc 
     12  1.16       agc #ifndef lint
     13  1.28    rillig __RCSID("$NetBSD: emacs.c,v 1.28 2005/05/23 08:03:25 rillig Exp $");
     14  1.16       agc #endif
     15  1.16       agc 
     16   1.1       jtc 
     17   1.1       jtc #include "config.h"
     18   1.1       jtc #ifdef EMACS
     19   1.1       jtc 
     20   1.1       jtc #include "sh.h"
     21   1.1       jtc #include "ksh_stat.h"
     22   1.1       jtc #include "ksh_dir.h"
     23   1.1       jtc #include <ctype.h>
     24  1.15    provos #include <locale.h>
     25   1.1       jtc #include "edit.h"
     26   1.1       jtc 
     27   1.1       jtc static	Area	aedit;
     28   1.1       jtc #define	AEDIT	&aedit		/* area for kill ring and macro defns */
     29   1.1       jtc 
     30   1.1       jtc #undef CTRL			/* _BSD brain damage */
     31   1.1       jtc #define	CTRL(x)		((x) == '?' ? 0x7F : (x) & 0x1F)	/* ASCII */
     32   1.1       jtc #define	UNCTRL(x)	((x) == 0x7F ? '?' : (x) | 0x40)	/* ASCII */
     33  1.15    provos #define	META(x)		((x) & 0x7f)
     34  1.24   mycroft #define	ISMETA(x)	(Flag(FEMACSUSEMETA) && ((x) & 0x80))
     35   1.1       jtc 
     36   1.1       jtc 
     37   1.1       jtc /* values returned by keyboard functions */
     38   1.1       jtc #define	KSTD	0
     39   1.1       jtc #define	KEOL	1		/* ^M, ^J */
     40   1.1       jtc #define	KINTR	2		/* ^G, ^C */
     41   1.1       jtc 
     42   1.1       jtc struct	x_ftab  {
     43   1.1       jtc 	int		(*xf_func) ARGS((int c));
     44   1.1       jtc 	const char	*xf_name;
     45   1.1       jtc 	short		xf_flags;
     46   1.1       jtc };
     47   1.1       jtc 
     48   1.1       jtc /* index into struct x_ftab x_ftab[] - small is good */
     49   1.1       jtc typedef unsigned char Findex;
     50   1.1       jtc 
     51   1.1       jtc struct x_defbindings {
     52   1.1       jtc 	Findex		xdb_func;	/* XFUNC_* */
     53   1.6   hubertf 	unsigned char	xdb_tab;
     54   1.1       jtc 	unsigned char	xdb_char;
     55   1.1       jtc };
     56   1.1       jtc 
     57   1.1       jtc #define XF_ARG		1	/* command takes number prefix */
     58   1.1       jtc #define	XF_NOBIND	2	/* not allowed to bind to function */
     59   1.1       jtc #define	XF_PREFIX	4	/* function sets prefix */
     60   1.1       jtc 
     61   1.1       jtc /* Separator for completion */
     62   1.1       jtc #define	is_cfs(c)	(c == ' ' || c == '\t' || c == '"' || c == '\'')
     63   1.5  christos #define	is_mfs(c)	(!(isalnum((unsigned char)c) || c == '_' || c == '$'))  /* Separator for motion */
     64   1.1       jtc 
     65   1.1       jtc #ifdef OS2
     66   1.1       jtc   /* Deal with 8 bit chars & an extra prefix for function key (these two
     67   1.1       jtc    * changes increase memory usage from 9,216 bytes to 24,416 bytes...)
     68   1.1       jtc    */
     69   1.1       jtc # define CHARMASK	0xFF		/* 8-bit ASCII character mask */
     70   1.1       jtc # define X_NTABS	4		/* normal, meta1, meta2, meta3 */
     71   1.1       jtc static int	x_prefix3 = 0xE0;
     72   1.1       jtc #else /* OS2 */
     73   1.6   hubertf # define CHARMASK	0xFF		/* 8-bit character mask */
     74   1.1       jtc # define X_NTABS	3		/* normal, meta1, meta2 */
     75   1.1       jtc #endif /* OS2 */
     76   1.6   hubertf #define X_TABSZ		(CHARMASK+1)	/* size of keydef tables etc */
     77   1.1       jtc 
     78   1.1       jtc /* Arguments for do_complete()
     79   1.1       jtc  * 0 = enumerate  M-= complete as much as possible and then list
     80   1.1       jtc  * 1 = complete   M-Esc
     81   1.1       jtc  * 2 = list       M-?
     82   1.1       jtc  */
     83   1.1       jtc typedef enum { CT_LIST, 	/* list the possible completions */
     84   1.1       jtc 		 CT_COMPLETE,	/* complete to longest prefix */
     85   1.1       jtc 		 CT_COMPLIST	/* complete and then list (if non-exact) */
     86   1.1       jtc 	} Comp_type;
     87   1.1       jtc 
     88   1.1       jtc /* { from 4.9 edit.h */
     89   1.1       jtc /*
     90   1.1       jtc  * The following are used for my horizontal scrolling stuff
     91   1.1       jtc  */
     92   1.1       jtc static char   *xbuf;		/* beg input buffer */
     93   1.1       jtc static char   *xend;		/* end input buffer */
     94   1.1       jtc static char    *xcp;		/* current position */
     95   1.1       jtc static char    *xep;		/* current end */
     96   1.1       jtc static char    *xbp;		/* start of visible portion of input buffer */
     97   1.1       jtc static char    *xlp;		/* last char visible on screen */
     98   1.1       jtc static int	x_adj_ok;
     99   1.1       jtc /*
    100  1.24   mycroft  * we use x_adj_done so that functions can tell
    101   1.1       jtc  * whether x_adjust() has been called while they are active.
    102   1.1       jtc  */
    103   1.1       jtc static int	x_adj_done;
    104   1.1       jtc 
    105   1.1       jtc static int	xx_cols;
    106   1.1       jtc static int	x_col;
    107   1.1       jtc static int	x_displen;
    108   1.1       jtc static int	x_arg;		/* general purpose arg */
    109   1.1       jtc static int	x_arg_defaulted;/* x_arg not explicitly set; defaulted to 1 */
    110   1.1       jtc 
    111   1.1       jtc static int	xlp_valid;
    112   1.1       jtc /* end from 4.9 edit.h } */
    113   1.1       jtc 
    114   1.1       jtc static	int	x_prefix1 = CTRL('['), x_prefix2 = CTRL('X');
    115   1.1       jtc static	char   **x_histp;	/* history position */
    116   1.1       jtc static	int	x_nextcmd;	/* for newline-and-next */
    117   1.1       jtc static	char	*xmp;		/* mark pointer */
    118   1.1       jtc static	Findex   x_last_command;
    119   1.1       jtc static	Findex (*x_tab)[X_TABSZ];	/* key definition */
    120   1.1       jtc static	char    *(*x_atab)[X_TABSZ];	/* macro definitions */
    121   1.6   hubertf static	unsigned char	x_bound[(X_TABSZ * X_NTABS + 7) / 8];
    122   1.1       jtc #define	KILLSIZE	20
    123   1.1       jtc static	char    *killstack[KILLSIZE];
    124   1.1       jtc static	int	killsp, killtp;
    125   1.1       jtc static	int	x_curprefix;
    126   1.1       jtc static	char    *macroptr;
    127  1.25   mycroft static	int	prompt_trunc;
    128   1.1       jtc static	int	prompt_skip;
    129   1.1       jtc 
    130   1.1       jtc static int      x_ins       ARGS((char *cp));
    131  1.24   mycroft static void     x_delete    ARGS((int nc, int push));
    132   1.1       jtc static int	x_bword     ARGS((void));
    133   1.1       jtc static int	x_fword     ARGS((void));
    134   1.1       jtc static void     x_goto      ARGS((char *cp));
    135   1.1       jtc static void     x_bs        ARGS((int c));
    136   1.1       jtc static int      x_size_str  ARGS((char *cp));
    137   1.1       jtc static int      x_size      ARGS((int c));
    138   1.1       jtc static void     x_zots      ARGS((char *str));
    139   1.1       jtc static void     x_zotc      ARGS((int c));
    140   1.1       jtc static void     x_load_hist ARGS((char **hp));
    141   1.1       jtc static int      x_search    ARGS((char *pat, int sameline, int offset));
    142   1.1       jtc static int      x_match     ARGS((char *str, char *pat));
    143   1.1       jtc static void	x_redraw    ARGS((int limit));
    144   1.1       jtc static void     x_push      ARGS((int nchars));
    145   1.1       jtc static char *   x_mapin     ARGS((const char *cp));
    146   1.1       jtc static char *   x_mapout    ARGS((int c));
    147   1.1       jtc static void     x_print     ARGS((int prefix, int key));
    148   1.1       jtc static void	x_adjust    ARGS((void));
    149   1.1       jtc static void	x_e_ungetc  ARGS((int c));
    150   1.1       jtc static int	x_e_getc    ARGS((void));
    151   1.1       jtc static void	x_e_putc    ARGS((int c));
    152   1.1       jtc static void	x_e_puts    ARGS((const char *s));
    153  1.24   mycroft static int	x_comment   ARGS((int c));
    154   1.1       jtc static int	x_fold_case ARGS((int c));
    155   1.1       jtc static char	*x_lastcp ARGS((void));
    156   1.1       jtc static void	do_complete ARGS((int flags, Comp_type type));
    157   1.8  jdolecek static int	x_emacs_putbuf	ARGS((const char *s, size_t len));
    158   1.1       jtc 
    159   1.1       jtc 
    160   1.1       jtc /* The lines between START-FUNC-TAB .. END-FUNC-TAB are run through a
    161   1.1       jtc  * script (emacs-gen.sh) that generates emacs.out which contains:
    162   1.1       jtc  *	- function declarations for x_* functions
    163   1.1       jtc  *	- defines of the form XFUNC_<name> where <name> is function
    164   1.1       jtc  *	  name, sans leading x_.
    165   1.1       jtc  * Note that the script treats #ifdef and { 0, 0, 0} specially - use with
    166   1.1       jtc  * caution.
    167   1.1       jtc  */
    168   1.1       jtc #include "emacs.out"
    169   1.1       jtc static const struct x_ftab x_ftab[] = {
    170   1.1       jtc /* @START-FUNC-TAB@ */
    171   1.1       jtc 	{ x_abort,		"abort",			0 },
    172   1.1       jtc 	{ x_beg_hist,		"beginning-of-history",		0 },
    173   1.1       jtc 	{ x_comp_comm,		"complete-command",		0 },
    174   1.1       jtc 	{ x_comp_file,		"complete-file",		0 },
    175   1.1       jtc 	{ x_complete,		"complete",			0 },
    176   1.1       jtc 	{ x_del_back,		"delete-char-backward",		XF_ARG },
    177   1.1       jtc 	{ x_del_bword,		"delete-word-backward",		XF_ARG },
    178   1.1       jtc 	{ x_del_char,		"delete-char-forward",		XF_ARG },
    179   1.1       jtc 	{ x_del_fword,		"delete-word-forward",		XF_ARG },
    180   1.1       jtc 	{ x_del_line,		"kill-line",			0 },
    181   1.1       jtc 	{ x_draw_line,		"redraw",			0 },
    182   1.1       jtc 	{ x_end_hist,		"end-of-history",		0 },
    183   1.1       jtc 	{ x_end_of_text,	"eot",				0 },
    184   1.1       jtc 	{ x_enumerate,		"list",				0 },
    185   1.1       jtc 	{ x_eot_del,		"eot-or-delete",		XF_ARG },
    186   1.1       jtc 	{ x_error,		"error",			0 },
    187   1.1       jtc 	{ x_goto_hist,		"goto-history",			XF_ARG },
    188   1.1       jtc 	{ x_ins_string,		"macro-string",			XF_NOBIND },
    189   1.1       jtc 	{ x_insert,		"auto-insert",			XF_ARG },
    190   1.1       jtc 	{ x_kill,		"kill-to-eol",			XF_ARG },
    191   1.1       jtc 	{ x_kill_region,	"kill-region",			0 },
    192   1.1       jtc 	{ x_list_comm,		"list-command",			0 },
    193   1.1       jtc 	{ x_list_file,		"list-file",			0 },
    194   1.1       jtc 	{ x_literal,		"quote",			0 },
    195   1.1       jtc 	{ x_meta1,		"prefix-1",			XF_PREFIX },
    196   1.1       jtc 	{ x_meta2,		"prefix-2",			XF_PREFIX },
    197   1.1       jtc 	{ x_meta_yank,		"yank-pop",			0 },
    198   1.1       jtc 	{ x_mv_back,		"backward-char",		XF_ARG },
    199   1.1       jtc 	{ x_mv_begin,		"beginning-of-line",		0 },
    200   1.1       jtc 	{ x_mv_bword,		"backward-word",		XF_ARG },
    201   1.1       jtc 	{ x_mv_end,		"end-of-line",			0 },
    202   1.1       jtc 	{ x_mv_forw,		"forward-char",			XF_ARG },
    203   1.1       jtc 	{ x_mv_fword,		"forward-word",			XF_ARG },
    204   1.1       jtc 	{ x_newline,		"newline",			0 },
    205   1.1       jtc 	{ x_next_com,		"down-history",			XF_ARG },
    206   1.1       jtc 	{ x_nl_next_com,	"newline-and-next",		0 },
    207   1.1       jtc 	{ x_noop,		"no-op",			0 },
    208   1.1       jtc 	{ x_prev_com,		"up-history",			XF_ARG },
    209   1.1       jtc 	{ x_prev_histword,	"prev-hist-word",		XF_ARG },
    210   1.1       jtc 	{ x_search_char_forw,	"search-character-forward",	XF_ARG },
    211   1.1       jtc 	{ x_search_char_back,	"search-character-backward",	XF_ARG },
    212   1.1       jtc 	{ x_search_hist,	"search-history",		0 },
    213   1.1       jtc 	{ x_set_mark,		"set-mark-command",		0 },
    214   1.1       jtc 	{ x_stuff,		"stuff",			0 },
    215   1.1       jtc 	{ x_stuffreset,		"stuff-reset",			0 },
    216   1.1       jtc 	{ x_transpose,		"transpose-chars",		0 },
    217   1.1       jtc 	{ x_version,		"version",			0 },
    218   1.1       jtc 	{ x_xchg_point_mark,	"exchange-point-and-mark",	0 },
    219   1.1       jtc 	{ x_yank,		"yank",				0 },
    220   1.1       jtc         { x_comp_list,		"complete-list",		0 },
    221   1.1       jtc         { x_expand,		"expand-file",			0 },
    222  1.24   mycroft         { x_fold_capitalize,	"capitalize-word",		XF_ARG },
    223   1.1       jtc         { x_fold_lower,		"downcase-word",		XF_ARG },
    224   1.1       jtc         { x_fold_upper,		"upcase-word",			XF_ARG },
    225   1.1       jtc         { x_set_arg,		"set-arg",			XF_NOBIND },
    226   1.1       jtc         { x_comment,		"comment",			0 },
    227   1.1       jtc #ifdef SILLY
    228   1.1       jtc 	{ x_game_of_life,	"play-game-of-life",		0 },
    229   1.1       jtc #else
    230   1.1       jtc 	{ 0, 0, 0 },
    231   1.1       jtc #endif
    232   1.1       jtc #ifdef DEBUG
    233   1.1       jtc         { x_debug_info,		"debug-info",			0 },
    234   1.1       jtc #else
    235   1.1       jtc 	{ 0, 0, 0 },
    236   1.1       jtc #endif
    237   1.1       jtc #ifdef OS2
    238   1.1       jtc 	{ x_meta3,		"prefix-3",			XF_PREFIX },
    239   1.1       jtc #else
    240   1.1       jtc 	{ 0, 0, 0 },
    241   1.1       jtc #endif
    242   1.1       jtc /* @END-FUNC-TAB@ */
    243   1.1       jtc     };
    244   1.1       jtc 
    245   1.1       jtc static	struct x_defbindings const x_defbindings[] = {
    246   1.1       jtc 	{ XFUNC_del_back,		0, CTRL('?') },
    247   1.1       jtc 	{ XFUNC_del_bword,		1, CTRL('?') },
    248   1.1       jtc 	{ XFUNC_eot_del,		0, CTRL('D') },
    249   1.1       jtc 	{ XFUNC_del_back,		0, CTRL('H') },
    250   1.1       jtc 	{ XFUNC_del_bword,		1, CTRL('H') },
    251   1.1       jtc 	{ XFUNC_del_bword,		1,      'h'  },
    252   1.1       jtc 	{ XFUNC_mv_bword,		1,      'b'  },
    253   1.1       jtc 	{ XFUNC_mv_fword,		1,      'f'  },
    254   1.1       jtc 	{ XFUNC_del_fword,		1,      'd'  },
    255   1.1       jtc 	{ XFUNC_mv_back,		0, CTRL('B') },
    256   1.1       jtc 	{ XFUNC_mv_forw,		0, CTRL('F') },
    257   1.1       jtc 	{ XFUNC_search_char_forw,	0, CTRL(']') },
    258   1.1       jtc 	{ XFUNC_search_char_back,	1, CTRL(']') },
    259   1.1       jtc 	{ XFUNC_newline,		0, CTRL('M') },
    260   1.1       jtc 	{ XFUNC_newline,		0, CTRL('J') },
    261   1.1       jtc 	{ XFUNC_end_of_text,		0, CTRL('_') },
    262   1.1       jtc 	{ XFUNC_abort,			0, CTRL('G') },
    263   1.1       jtc 	{ XFUNC_prev_com,		0, CTRL('P') },
    264   1.1       jtc 	{ XFUNC_next_com,		0, CTRL('N') },
    265   1.1       jtc 	{ XFUNC_nl_next_com,		0, CTRL('O') },
    266   1.1       jtc 	{ XFUNC_search_hist,		0, CTRL('R') },
    267   1.1       jtc 	{ XFUNC_beg_hist,		1,      '<'  },
    268   1.1       jtc 	{ XFUNC_end_hist,		1,      '>'  },
    269   1.1       jtc 	{ XFUNC_goto_hist,		1,      'g'  },
    270   1.1       jtc 	{ XFUNC_mv_end,			0, CTRL('E') },
    271   1.1       jtc 	{ XFUNC_mv_begin,		0, CTRL('A') },
    272   1.1       jtc 	{ XFUNC_draw_line,		0, CTRL('L') },
    273   1.1       jtc 	{ XFUNC_meta1,			0, CTRL('[') },
    274   1.1       jtc 	{ XFUNC_meta2,			0, CTRL('X') },
    275   1.1       jtc 	{ XFUNC_kill,			0, CTRL('K') },
    276   1.1       jtc 	{ XFUNC_yank,			0, CTRL('Y') },
    277   1.1       jtc 	{ XFUNC_meta_yank,		1,      'y'  },
    278   1.1       jtc 	{ XFUNC_literal,		0, CTRL('^') },
    279   1.1       jtc         { XFUNC_comment,		1,	'#'  },
    280   1.1       jtc #if defined(BRL) && defined(TIOCSTI)
    281   1.1       jtc 	{ XFUNC_stuff,			0, CTRL('T') },
    282   1.1       jtc #else
    283   1.1       jtc 	{ XFUNC_transpose,		0, CTRL('T') },
    284   1.1       jtc #endif
    285   1.1       jtc 	{ XFUNC_complete,		1, CTRL('[') },
    286  1.13    provos 	{ XFUNC_comp_list,		0, CTRL('I') },
    287   1.1       jtc         { XFUNC_comp_list,		1,	'='  },
    288   1.1       jtc 	{ XFUNC_enumerate,		1,	'?'  },
    289   1.1       jtc         { XFUNC_expand,			1,	'*'  },
    290   1.1       jtc 	{ XFUNC_comp_file,		1, CTRL('X') },
    291   1.1       jtc 	{ XFUNC_comp_comm,		2, CTRL('[') },
    292   1.1       jtc 	{ XFUNC_list_comm,		2,	'?'  },
    293   1.1       jtc 	{ XFUNC_list_file,		2, CTRL('Y') },
    294   1.1       jtc 	{ XFUNC_set_mark,		1,	' '  },
    295   1.1       jtc 	{ XFUNC_kill_region,		0, CTRL('W') },
    296   1.1       jtc 	{ XFUNC_xchg_point_mark,	2, CTRL('X') },
    297   1.1       jtc 	{ XFUNC_version,		0, CTRL('V') },
    298   1.1       jtc #ifdef DEBUG
    299   1.1       jtc         { XFUNC_debug_info,		1, CTRL('H') },
    300   1.1       jtc #endif
    301   1.1       jtc 	{ XFUNC_prev_histword,		1,	'.'  },
    302   1.1       jtc 	{ XFUNC_prev_histword,		1,	'_'  },
    303   1.1       jtc         { XFUNC_set_arg,		1,	'0'  },
    304   1.1       jtc         { XFUNC_set_arg,		1,	'1'  },
    305   1.1       jtc         { XFUNC_set_arg,		1,	'2'  },
    306   1.1       jtc         { XFUNC_set_arg,		1,	'3'  },
    307   1.1       jtc         { XFUNC_set_arg,		1,	'4'  },
    308   1.1       jtc         { XFUNC_set_arg,		1,	'5'  },
    309   1.1       jtc         { XFUNC_set_arg,		1,	'6'  },
    310   1.1       jtc         { XFUNC_set_arg,		1,	'7'  },
    311   1.1       jtc         { XFUNC_set_arg,		1,	'8'  },
    312   1.1       jtc         { XFUNC_set_arg,		1,	'9'  },
    313   1.1       jtc         { XFUNC_fold_upper,		1,	'U'  },
    314   1.1       jtc         { XFUNC_fold_upper,		1,	'u'  },
    315   1.1       jtc         { XFUNC_fold_lower,		1,	'L'  },
    316   1.1       jtc         { XFUNC_fold_lower,		1,	'l'  },
    317  1.24   mycroft         { XFUNC_fold_capitalize,	1,	'C'  },
    318  1.24   mycroft         { XFUNC_fold_capitalize,	1,	'c'  },
    319   1.1       jtc #ifdef OS2
    320   1.1       jtc 	{ XFUNC_meta3,			0,	0xE0 },
    321   1.1       jtc 	{ XFUNC_mv_back,		3,	'K'  },
    322   1.1       jtc 	{ XFUNC_mv_forw,		3,	'M'  },
    323   1.1       jtc 	{ XFUNC_next_com,		3,	'P'  },
    324   1.1       jtc 	{ XFUNC_prev_com,		3,	'H'  },
    325   1.6   hubertf #endif /* OS2 */
    326   1.1       jtc 	/* These for ansi arrow keys: arguablely shouldn't be here by
    327   1.1       jtc 	 * default, but its simpler/faster/smaller than using termcap
    328   1.1       jtc 	 * entries.
    329   1.1       jtc 	 */
    330   1.1       jtc         { XFUNC_meta2,			1,	'['  },
    331  1.24   mycroft         { XFUNC_meta2,			1,	'O'  },
    332   1.1       jtc 	{ XFUNC_prev_com,		2,	'A'  },
    333   1.1       jtc 	{ XFUNC_next_com,		2,	'B'  },
    334   1.1       jtc 	{ XFUNC_mv_forw,		2,	'C'  },
    335   1.1       jtc 	{ XFUNC_mv_back,		2,	'D'  },
    336   1.1       jtc };
    337   1.1       jtc 
    338   1.1       jtc int
    339   1.1       jtc x_emacs(buf, len)
    340   1.1       jtc 	char *buf;
    341   1.1       jtc 	size_t len;
    342   1.1       jtc {
    343   1.1       jtc 	int	c;
    344   1.1       jtc 	const char *p;
    345   1.1       jtc 	int	i;
    346   1.1       jtc 	Findex	f;
    347   1.1       jtc 
    348   1.1       jtc 	xbp = xbuf = buf; xend = buf + len;
    349   1.1       jtc 	xlp = xcp = xep = buf;
    350   1.1       jtc 	*xcp = 0;
    351   1.1       jtc 	xlp_valid = TRUE;
    352   1.1       jtc 	xmp = NULL;
    353   1.1       jtc 	x_curprefix = 0;
    354   1.1       jtc 	macroptr = (char *) 0;
    355   1.1       jtc 	x_histp = histptr + 1;
    356   1.1       jtc 	x_last_command = XFUNC_error;
    357   1.1       jtc 
    358   1.1       jtc 	xx_cols = x_cols;
    359   1.1       jtc 	x_col = promptlen(prompt, &p);
    360   1.1       jtc 	prompt_skip = p - prompt;
    361  1.25   mycroft 	prompt_trunc = x_col - (x_cols - 3 - MIN_EDIT_SPACE);
    362  1.25   mycroft 	if (prompt_trunc > 0)
    363  1.25   mycroft 		x_col -= prompt_trunc;
    364  1.25   mycroft 	else
    365  1.25   mycroft 		prompt_trunc = 0;
    366   1.1       jtc 	x_adj_ok = 1;
    367   1.1       jtc 	x_displen = xx_cols - 2 - x_col;
    368   1.1       jtc 	x_adj_done = 0;
    369   1.1       jtc 
    370  1.25   mycroft 	pprompt(prompt, prompt_trunc);
    371   1.1       jtc 
    372   1.1       jtc 	if (x_nextcmd >= 0) {
    373   1.1       jtc 		int off = source->line - x_nextcmd;
    374  1.23  jdolecek 		if (histptr - histlist >= off)
    375   1.1       jtc 			x_load_hist(histptr - off);
    376   1.1       jtc 		x_nextcmd = -1;
    377   1.1       jtc 	}
    378   1.1       jtc 
    379   1.1       jtc 	while (1) {
    380   1.1       jtc 		x_flush();
    381   1.1       jtc 		if ((c = x_e_getc()) < 0)
    382   1.1       jtc 			return 0;
    383   1.1       jtc 
    384  1.15    provos 		if (ISMETA(c)) {
    385  1.15    provos 			c = META(c);
    386  1.15    provos 			x_curprefix = 1;
    387  1.15    provos 		}
    388  1.15    provos 
    389   1.1       jtc 		f = x_curprefix == -1 ? XFUNC_insert
    390  1.24   mycroft 			: x_tab[x_curprefix][c&CHARMASK];
    391   1.1       jtc 
    392   1.1       jtc 		if (!(x_ftab[f].xf_flags & XF_PREFIX)
    393   1.1       jtc 		    && x_last_command != XFUNC_set_arg)
    394   1.1       jtc 		{
    395   1.1       jtc 			x_arg = 1;
    396   1.1       jtc 			x_arg_defaulted = 1;
    397   1.1       jtc 		}
    398   1.1       jtc 		i = c | (x_curprefix << 8);
    399   1.1       jtc 		x_curprefix = 0;
    400   1.1       jtc 		switch (i = (*x_ftab[f].xf_func)(i))  {
    401   1.1       jtc 		  case KSTD:
    402   1.1       jtc 			if (!(x_ftab[f].xf_flags & XF_PREFIX))
    403   1.1       jtc 				x_last_command = f;
    404   1.1       jtc 			break;
    405   1.1       jtc 		  case KEOL:
    406   1.1       jtc 			i = xep - xbuf;
    407   1.1       jtc 			return i;
    408   1.1       jtc 		  case KINTR:	/* special case for interrupt */
    409   1.1       jtc 			trapsig(SIGINT);
    410   1.1       jtc 			x_mode(FALSE);
    411   1.1       jtc 			unwind(LSHELL);
    412   1.1       jtc 		}
    413   1.1       jtc 	}
    414   1.1       jtc }
    415   1.1       jtc 
    416   1.1       jtc static int
    417   1.1       jtc x_insert(c)
    418   1.1       jtc 	int c;
    419   1.1       jtc {
    420   1.1       jtc 	char	str[2];
    421   1.1       jtc 
    422   1.1       jtc 	/*
    423   1.1       jtc 	 *  Should allow tab and control chars.
    424   1.1       jtc 	 */
    425   1.1       jtc 	if (c == 0)  {
    426   1.1       jtc 		x_e_putc(BEL);
    427   1.1       jtc 		return KSTD;
    428   1.1       jtc 	}
    429   1.1       jtc 	str[0] = c;
    430   1.1       jtc 	str[1] = '\0';
    431   1.1       jtc 	while (x_arg--)
    432   1.1       jtc 		x_ins(str);
    433   1.1       jtc 	return KSTD;
    434   1.1       jtc }
    435   1.1       jtc 
    436   1.1       jtc static int
    437   1.1       jtc x_ins_string(c)
    438   1.1       jtc 	int c;
    439   1.1       jtc {
    440   1.1       jtc 	if (macroptr)   {
    441   1.1       jtc 		x_e_putc(BEL);
    442   1.1       jtc 		return KSTD;
    443   1.1       jtc 	}
    444   1.1       jtc 	macroptr = x_atab[c>>8][c & CHARMASK];
    445   1.1       jtc 	if (macroptr && !*macroptr) {
    446   1.1       jtc 		/* XXX bell? */
    447   1.1       jtc 		macroptr = (char *) 0;
    448   1.1       jtc 	}
    449   1.1       jtc 	return KSTD;
    450   1.1       jtc }
    451   1.1       jtc 
    452  1.24   mycroft static int x_do_ins(const char *cp, int len);
    453  1.24   mycroft 
    454   1.1       jtc static int
    455   1.1       jtc x_do_ins(cp, len)
    456   1.1       jtc 	const char *cp;
    457   1.1       jtc 	int len;
    458   1.1       jtc {
    459   1.1       jtc 	if (xep+len >= xend) {
    460   1.1       jtc 		x_e_putc(BEL);
    461   1.1       jtc 		return -1;
    462   1.1       jtc 	}
    463   1.1       jtc 
    464   1.1       jtc 	memmove(xcp+len, xcp, xep - xcp + 1);
    465   1.1       jtc 	memmove(xcp, cp, len);
    466   1.1       jtc 	xcp += len;
    467   1.1       jtc 	xep += len;
    468   1.1       jtc 	return 0;
    469   1.1       jtc }
    470   1.1       jtc 
    471   1.1       jtc static int
    472   1.1       jtc x_ins(s)
    473   1.1       jtc 	char	*s;
    474   1.1       jtc {
    475   1.1       jtc 	char *cp = xcp;
    476   1.1       jtc 	register int	adj = x_adj_done;
    477   1.1       jtc 
    478   1.1       jtc 	if (x_do_ins(s, strlen(s)) < 0)
    479   1.1       jtc 		return -1;
    480   1.1       jtc 	/*
    481   1.1       jtc 	 * x_zots() may result in a call to x_adjust()
    482   1.1       jtc 	 * we want xcp to reflect the new position.
    483   1.1       jtc 	 */
    484   1.1       jtc 	xlp_valid = FALSE;
    485   1.1       jtc 	x_lastcp();
    486   1.1       jtc 	x_adj_ok = (xcp >= xlp);
    487   1.1       jtc 	x_zots(cp);
    488   1.1       jtc 	if (adj == x_adj_done)	/* has x_adjust() been called? */
    489   1.1       jtc 	{
    490   1.1       jtc 	  /* no */
    491   1.1       jtc 	  for (cp = xlp; cp > xcp; )
    492   1.1       jtc 	    x_bs(*--cp);
    493   1.1       jtc 	}
    494   1.1       jtc 
    495   1.1       jtc 	x_adj_ok = 1;
    496   1.1       jtc 	return 0;
    497   1.1       jtc }
    498   1.1       jtc 
    499   1.8  jdolecek /*
    500   1.8  jdolecek  * this is used for x_escape() in do_complete()
    501   1.8  jdolecek  */
    502   1.8  jdolecek static int
    503   1.8  jdolecek x_emacs_putbuf(s, len)
    504   1.8  jdolecek 	const char *s;
    505   1.8  jdolecek 	size_t len;
    506   1.8  jdolecek {
    507   1.8  jdolecek 	int rval;
    508   1.8  jdolecek 
    509   1.8  jdolecek 	if ((rval = x_do_ins(s, len)) != 0)
    510   1.8  jdolecek 		return (rval);
    511   1.8  jdolecek 	return (rval);
    512   1.8  jdolecek }
    513   1.8  jdolecek 
    514   1.1       jtc static int
    515   1.1       jtc x_del_back(c)
    516   1.1       jtc 	int c;
    517   1.1       jtc {
    518   1.1       jtc 	int col = xcp - xbuf;
    519   1.1       jtc 
    520   1.1       jtc 	if (col == 0)  {
    521   1.1       jtc 		x_e_putc(BEL);
    522   1.1       jtc 		return KSTD;
    523   1.1       jtc 	}
    524   1.1       jtc 	if (x_arg > col)
    525   1.1       jtc 		x_arg = col;
    526   1.1       jtc 	x_goto(xcp - x_arg);
    527   1.1       jtc 	x_delete(x_arg, FALSE);
    528   1.1       jtc 	return KSTD;
    529   1.1       jtc }
    530   1.1       jtc 
    531   1.1       jtc static int
    532   1.1       jtc x_del_char(c)
    533   1.1       jtc 	int c;
    534   1.1       jtc {
    535   1.1       jtc 	int nleft = xep - xcp;
    536   1.1       jtc 
    537   1.1       jtc 	if (!nleft) {
    538   1.1       jtc 		x_e_putc(BEL);
    539   1.1       jtc 		return KSTD;
    540   1.1       jtc 	}
    541   1.1       jtc 	if (x_arg > nleft)
    542   1.1       jtc 		x_arg = nleft;
    543   1.1       jtc 	x_delete(x_arg, FALSE);
    544   1.1       jtc 	return KSTD;
    545   1.1       jtc }
    546   1.1       jtc 
    547   1.1       jtc /* Delete nc chars to the right of the cursor (including cursor position) */
    548   1.1       jtc static void
    549  1.24   mycroft x_delete(nc, push)
    550   1.1       jtc 	int nc;
    551  1.24   mycroft 	int push;
    552   1.1       jtc {
    553   1.1       jtc 	int	i,j;
    554   1.1       jtc 	char	*cp;
    555   1.1       jtc 
    556   1.1       jtc 	if (nc == 0)
    557   1.1       jtc 		return;
    558   1.1       jtc 	if (xmp != NULL && xmp > xcp) {
    559   1.1       jtc 		if (xcp + nc > xmp)
    560   1.1       jtc 			xmp = xcp;
    561   1.1       jtc 		else
    562   1.1       jtc 			xmp -= nc;
    563   1.1       jtc 	}
    564   1.1       jtc 
    565   1.1       jtc 	/*
    566   1.1       jtc 	 * This lets us yank a word we have deleted.
    567   1.1       jtc 	 */
    568  1.24   mycroft 	if (push)
    569   1.1       jtc 		x_push(nc);
    570   1.1       jtc 
    571   1.1       jtc 	xep -= nc;
    572   1.1       jtc 	cp = xcp;
    573   1.1       jtc 	j = 0;
    574   1.1       jtc 	i = nc;
    575   1.1       jtc 	while (i--)  {
    576   1.1       jtc 		j += x_size(*cp++);
    577   1.1       jtc 	}
    578   1.1       jtc 	memmove(xcp, xcp+nc, xep - xcp + 1);	/* Copies the null */
    579   1.1       jtc 	x_adj_ok = 0;			/* don't redraw */
    580   1.1       jtc 	x_zots(xcp);
    581   1.1       jtc 	/*
    582   1.1       jtc 	 * if we are already filling the line,
    583   1.1       jtc 	 * there is no need to ' ','\b'.
    584   1.1       jtc 	 * But if we must, make sure we do the minimum.
    585   1.1       jtc 	 */
    586  1.25   mycroft 	if ((i = x_displen) > 0)
    587   1.1       jtc 	{
    588   1.1       jtc 	  j = (j < i) ? j : i;
    589   1.1       jtc 	  i = j;
    590   1.1       jtc 	  while (i--)
    591   1.1       jtc 	    x_e_putc(' ');
    592   1.1       jtc 	  i = j;
    593   1.1       jtc 	  while (i--)
    594   1.1       jtc 	    x_e_putc('\b');
    595   1.1       jtc 	}
    596   1.1       jtc 	/*x_goto(xcp);*/
    597   1.1       jtc 	x_adj_ok = 1;
    598   1.1       jtc 	xlp_valid = FALSE;
    599   1.1       jtc 	for (cp = x_lastcp(); cp > xcp; )
    600   1.1       jtc 		x_bs(*--cp);
    601   1.1       jtc 
    602   1.1       jtc 	return;
    603   1.1       jtc }
    604   1.1       jtc 
    605   1.1       jtc static int
    606   1.1       jtc x_del_bword(c)
    607   1.1       jtc 	int c;
    608   1.1       jtc {
    609  1.21       wiz 	x_delete(x_bword(), TRUE);
    610   1.1       jtc 	return KSTD;
    611   1.1       jtc }
    612   1.1       jtc 
    613   1.1       jtc static int
    614   1.1       jtc x_mv_bword(c)
    615   1.1       jtc 	int c;
    616   1.1       jtc {
    617   1.1       jtc 	(void)x_bword();
    618   1.1       jtc 	return KSTD;
    619   1.1       jtc }
    620   1.1       jtc 
    621   1.1       jtc static int
    622   1.1       jtc x_mv_fword(c)
    623   1.1       jtc 	int c;
    624   1.1       jtc {
    625   1.1       jtc 	x_goto(xcp + x_fword());
    626   1.1       jtc 	return KSTD;
    627   1.1       jtc }
    628   1.1       jtc 
    629   1.1       jtc static int
    630   1.1       jtc x_del_fword(c)
    631   1.1       jtc 	int c;
    632   1.1       jtc {
    633  1.21       wiz 	x_delete(x_fword(), TRUE);
    634   1.1       jtc 	return KSTD;
    635   1.1       jtc }
    636   1.1       jtc 
    637   1.1       jtc static int
    638   1.1       jtc x_bword()
    639   1.1       jtc {
    640   1.1       jtc 	int	nc = 0;
    641   1.1       jtc 	register char *cp = xcp;
    642   1.1       jtc 
    643   1.1       jtc 	if (cp == xbuf)  {
    644   1.1       jtc 		x_e_putc(BEL);
    645   1.1       jtc 		return 0;
    646   1.1       jtc 	}
    647   1.1       jtc 	while (x_arg--)
    648   1.1       jtc 	{
    649   1.1       jtc 	  while (cp != xbuf && is_mfs(cp[-1]))
    650   1.1       jtc 	  {
    651   1.1       jtc 	    cp--;
    652   1.1       jtc 	    nc++;
    653   1.1       jtc 	  }
    654   1.1       jtc 	  while (cp != xbuf && !is_mfs(cp[-1]))
    655   1.1       jtc 	  {
    656   1.1       jtc 	    cp--;
    657   1.1       jtc 	    nc++;
    658   1.1       jtc 	  }
    659   1.1       jtc 	}
    660   1.1       jtc 	x_goto(cp);
    661   1.1       jtc 	return nc;
    662   1.1       jtc }
    663   1.1       jtc 
    664   1.1       jtc static int
    665   1.1       jtc x_fword()
    666   1.1       jtc {
    667   1.1       jtc 	int	nc = 0;
    668   1.1       jtc 	register char	*cp = xcp;
    669   1.1       jtc 
    670   1.1       jtc 	if (cp == xep)  {
    671   1.1       jtc 		x_e_putc(BEL);
    672   1.1       jtc 		return 0;
    673   1.1       jtc 	}
    674   1.1       jtc 	while (x_arg--)
    675   1.1       jtc 	{
    676   1.1       jtc 	  while (cp != xep && is_mfs(*cp))
    677   1.1       jtc 	  {
    678   1.1       jtc 	    cp++;
    679   1.1       jtc 	    nc++;
    680   1.1       jtc 	  }
    681   1.1       jtc 	  while (cp != xep && !is_mfs(*cp))
    682   1.1       jtc 	  {
    683   1.1       jtc 	    cp++;
    684   1.1       jtc 	    nc++;
    685   1.1       jtc 	  }
    686   1.1       jtc 	}
    687   1.1       jtc 	return nc;
    688   1.1       jtc }
    689   1.1       jtc 
    690   1.1       jtc static void
    691   1.1       jtc x_goto(cp)
    692   1.1       jtc 	register char *cp;
    693   1.1       jtc {
    694   1.1       jtc   if (cp < xbp || cp >= (xbp + x_displen))
    695   1.1       jtc   {
    696   1.1       jtc     /* we are heading off screen */
    697   1.1       jtc     xcp = cp;
    698   1.1       jtc     x_adjust();
    699   1.1       jtc   }
    700   1.1       jtc   else
    701   1.1       jtc   {
    702   1.1       jtc     if (cp < xcp)		/* move back */
    703   1.1       jtc     {
    704   1.1       jtc       while (cp < xcp)
    705   1.1       jtc 	x_bs(*--xcp);
    706   1.1       jtc     }
    707   1.1       jtc     else
    708   1.1       jtc     {
    709   1.1       jtc       if (cp > xcp)		/* move forward */
    710   1.1       jtc       {
    711   1.1       jtc 	while (cp > xcp)
    712   1.1       jtc 	  x_zotc(*xcp++);
    713   1.1       jtc       }
    714   1.1       jtc     }
    715   1.1       jtc   }
    716   1.1       jtc }
    717   1.1       jtc 
    718   1.1       jtc static void
    719   1.1       jtc x_bs(c)
    720   1.1       jtc 	int c;
    721   1.1       jtc {
    722   1.6   hubertf 	register int i;
    723   1.1       jtc 	i = x_size(c);
    724   1.1       jtc 	while (i--)
    725   1.1       jtc 		x_e_putc('\b');
    726   1.1       jtc }
    727   1.1       jtc 
    728   1.1       jtc static int
    729   1.1       jtc x_size_str(cp)
    730   1.1       jtc 	register char *cp;
    731   1.1       jtc {
    732   1.6   hubertf 	register int size = 0;
    733   1.1       jtc 	while (*cp)
    734   1.1       jtc 		size += x_size(*cp++);
    735   1.1       jtc 	return size;
    736   1.1       jtc }
    737   1.1       jtc 
    738   1.1       jtc static int
    739   1.1       jtc x_size(c)
    740   1.1       jtc 	int c;
    741   1.1       jtc {
    742   1.1       jtc 	if (c=='\t')
    743   1.1       jtc 		return 4;	/* Kludge, tabs are always four spaces. */
    744  1.26       dsl 	if (iscntrl((unsigned char)c))		/* control char */
    745   1.1       jtc 		return 2;
    746   1.1       jtc 	return 1;
    747   1.1       jtc }
    748   1.1       jtc 
    749   1.1       jtc static void
    750   1.1       jtc x_zots(str)
    751   1.1       jtc 	register char *str;
    752   1.1       jtc {
    753   1.1       jtc   register int	adj = x_adj_done;
    754   1.1       jtc 
    755   1.1       jtc   x_lastcp();
    756   1.1       jtc   while (*str && str < xlp && adj == x_adj_done)
    757   1.1       jtc     x_zotc(*str++);
    758   1.1       jtc }
    759   1.1       jtc 
    760   1.1       jtc static void
    761   1.1       jtc x_zotc(c)
    762   1.1       jtc 	int c;
    763   1.1       jtc {
    764   1.1       jtc 	if (c == '\t')  {
    765   1.1       jtc 		/*  Kludge, tabs are always four spaces.  */
    766   1.1       jtc 		x_e_puts("    ");
    767  1.26       dsl 	} else if (iscntrl((unsigned char)c))  {
    768   1.1       jtc 		x_e_putc('^');
    769   1.1       jtc 		x_e_putc(UNCTRL(c));
    770   1.1       jtc 	} else
    771   1.1       jtc 		x_e_putc(c);
    772   1.1       jtc }
    773   1.1       jtc 
    774   1.1       jtc static int
    775   1.1       jtc x_mv_back(c)
    776   1.1       jtc 	int c;
    777   1.1       jtc {
    778   1.1       jtc 	int col = xcp - xbuf;
    779   1.1       jtc 
    780   1.1       jtc 	if (col == 0)  {
    781   1.1       jtc 		x_e_putc(BEL);
    782   1.1       jtc 		return KSTD;
    783   1.1       jtc 	}
    784   1.1       jtc 	if (x_arg > col)
    785   1.1       jtc 		x_arg = col;
    786   1.1       jtc 	x_goto(xcp - x_arg);
    787   1.1       jtc 	return KSTD;
    788   1.1       jtc }
    789   1.1       jtc 
    790   1.1       jtc static int
    791   1.1       jtc x_mv_forw(c)
    792   1.1       jtc 	int c;
    793   1.1       jtc {
    794   1.1       jtc 	int nleft = xep - xcp;
    795   1.1       jtc 
    796   1.1       jtc 	if (!nleft) {
    797   1.1       jtc 		x_e_putc(BEL);
    798   1.1       jtc 		return KSTD;
    799   1.1       jtc 	}
    800   1.1       jtc 	if (x_arg > nleft)
    801   1.1       jtc 		x_arg = nleft;
    802   1.1       jtc 	x_goto(xcp + x_arg);
    803   1.1       jtc 	return KSTD;
    804   1.1       jtc }
    805   1.1       jtc 
    806   1.1       jtc static int
    807   1.1       jtc x_search_char_forw(c)
    808   1.1       jtc 	int c;
    809   1.1       jtc {
    810   1.1       jtc 	char *cp = xcp;
    811   1.1       jtc 
    812   1.1       jtc 	*xep = '\0';
    813   1.1       jtc 	c = x_e_getc();
    814   1.1       jtc 	while (x_arg--) {
    815   1.1       jtc 	    if (c < 0
    816   1.1       jtc 	       || ((cp = (cp == xep) ? NULL : strchr(cp + 1, c)) == NULL
    817   1.1       jtc 		   && (cp = strchr(xbuf, c)) == NULL))
    818   1.1       jtc 	    {
    819   1.1       jtc 		    x_e_putc(BEL);
    820   1.1       jtc 		    return KSTD;
    821   1.1       jtc 	    }
    822   1.1       jtc 	}
    823   1.1       jtc 	x_goto(cp);
    824   1.1       jtc 	return KSTD;
    825   1.1       jtc }
    826   1.1       jtc 
    827   1.1       jtc static int
    828   1.1       jtc x_search_char_back(c)
    829   1.1       jtc 	int c;
    830   1.1       jtc {
    831   1.1       jtc 	char *cp = xcp, *p;
    832   1.1       jtc 
    833   1.1       jtc 	c = x_e_getc();
    834   1.1       jtc 	for (; x_arg--; cp = p)
    835   1.1       jtc 		for (p = cp; ; ) {
    836   1.1       jtc 			if (p-- == xbuf)
    837   1.1       jtc 				p = xep;
    838   1.1       jtc 			if (c < 0 || p == cp) {
    839   1.1       jtc 				x_e_putc(BEL);
    840   1.1       jtc 				return KSTD;
    841   1.1       jtc 			}
    842   1.1       jtc 			if (*p == c)
    843   1.1       jtc 				break;
    844   1.1       jtc 		}
    845   1.1       jtc 	x_goto(cp);
    846   1.1       jtc 	return KSTD;
    847   1.1       jtc }
    848   1.1       jtc 
    849   1.1       jtc static int
    850   1.1       jtc x_newline(c)
    851   1.1       jtc 	int c;
    852   1.1       jtc {
    853   1.1       jtc 	x_e_putc('\r');
    854   1.1       jtc 	x_e_putc('\n');
    855   1.1       jtc 	x_flush();
    856   1.1       jtc 	*xep++ = '\n';
    857   1.1       jtc 	return KEOL;
    858   1.1       jtc }
    859   1.1       jtc 
    860   1.1       jtc static int
    861   1.1       jtc x_end_of_text(c)
    862   1.1       jtc 	int c;
    863   1.1       jtc {
    864   1.1       jtc 	return KEOL;
    865   1.1       jtc }
    866   1.1       jtc 
    867  1.23  jdolecek static int x_beg_hist(c) int c; { x_load_hist(histlist); return KSTD;}
    868   1.1       jtc 
    869   1.1       jtc static int x_end_hist(c) int c; { x_load_hist(histptr); return KSTD;}
    870   1.1       jtc 
    871   1.1       jtc static int x_prev_com(c) int c; { x_load_hist(x_histp - x_arg); return KSTD;}
    872   1.1       jtc 
    873   1.1       jtc static int x_next_com(c) int c; { x_load_hist(x_histp + x_arg); return KSTD;}
    874  1.24   mycroft 
    875   1.1       jtc /* Goto a particular history number obtained from argument.
    876   1.1       jtc  * If no argument is given history 1 is probably not what you
    877   1.1       jtc  * want so we'll simply go to the oldest one.
    878   1.1       jtc  */
    879   1.1       jtc static int
    880   1.1       jtc x_goto_hist(c)
    881   1.1       jtc 	int c;
    882   1.1       jtc {
    883   1.1       jtc 	if (x_arg_defaulted)
    884  1.23  jdolecek 		x_load_hist(histlist);
    885   1.1       jtc 	else
    886   1.1       jtc 		x_load_hist(histptr + x_arg - source->line);
    887   1.1       jtc 	return KSTD;
    888   1.1       jtc }
    889   1.1       jtc 
    890   1.1       jtc static void
    891   1.1       jtc x_load_hist(hp)
    892   1.1       jtc 	register char **hp;
    893   1.1       jtc {
    894   1.1       jtc 	int	oldsize;
    895   1.1       jtc 
    896  1.23  jdolecek 	if (hp < histlist || hp > histptr) {
    897   1.1       jtc 		x_e_putc(BEL);
    898   1.1       jtc 		return;
    899   1.1       jtc 	}
    900   1.1       jtc 	x_histp = hp;
    901   1.1       jtc 	oldsize = x_size_str(xbuf);
    902  1.24   mycroft 	strlcpy(xbuf, *hp, xend - xbuf);
    903   1.1       jtc 	xbp = xbuf;
    904  1.24   mycroft 	xep = xcp = xbuf + strlen(xbuf);
    905   1.1       jtc 	xlp_valid = FALSE;
    906   1.1       jtc 	if (xep > x_lastcp())
    907   1.1       jtc 	  x_goto(xep);
    908   1.1       jtc 	else
    909   1.1       jtc 	  x_redraw(oldsize);
    910   1.1       jtc }
    911   1.1       jtc 
    912   1.1       jtc static int
    913   1.1       jtc x_nl_next_com(c)
    914   1.1       jtc 	int	c;
    915   1.1       jtc {
    916   1.1       jtc 	x_nextcmd = source->line - (histptr - x_histp) + 1;
    917   1.1       jtc 	return (x_newline(c));
    918   1.1       jtc }
    919   1.1       jtc 
    920   1.1       jtc static int
    921   1.1       jtc x_eot_del(c)
    922   1.1       jtc 	int	c;
    923   1.1       jtc {
    924   1.1       jtc 	if (xep == xbuf && x_arg_defaulted)
    925   1.1       jtc 		return (x_end_of_text(c));
    926   1.1       jtc 	else
    927   1.1       jtc 		return (x_del_char(c));
    928   1.1       jtc }
    929   1.1       jtc 
    930   1.1       jtc /* reverse incremental history search */
    931   1.1       jtc static int
    932   1.1       jtc x_search_hist(c)
    933   1.1       jtc 	int c;
    934   1.1       jtc {
    935   1.1       jtc 	int offset = -1;	/* offset of match in xbuf, else -1 */
    936   1.1       jtc 	char pat [256+1];	/* pattern buffer */
    937   1.1       jtc 	register char *p = pat;
    938   1.1       jtc 	Findex f;
    939   1.1       jtc 
    940   1.1       jtc 	*p = '\0';
    941   1.1       jtc 	while (1) {
    942   1.1       jtc 		if (offset < 0) {
    943   1.1       jtc 			x_e_puts("\nI-search: ");
    944   1.1       jtc 			x_e_puts(pat);
    945   1.1       jtc 		}
    946   1.1       jtc 		x_flush();
    947   1.1       jtc 		if ((c = x_e_getc()) < 0)
    948   1.1       jtc 			return KSTD;
    949   1.1       jtc 		f = x_tab[0][c&CHARMASK];
    950   1.1       jtc 		if (c == CTRL('['))
    951   1.1       jtc 			break;
    952   1.1       jtc 		else if (f == XFUNC_search_hist)
    953   1.1       jtc 			offset = x_search(pat, 0, offset);
    954   1.1       jtc 		else if (f == XFUNC_del_back) {
    955   1.1       jtc 			if (p == pat) {
    956   1.1       jtc 				offset = -1;
    957   1.1       jtc 				break;
    958   1.1       jtc 			}
    959   1.1       jtc 			if (p > pat)
    960   1.1       jtc 				*--p = '\0';
    961   1.1       jtc 			if (p == pat)
    962   1.1       jtc 				offset = -1;
    963   1.1       jtc 			else
    964   1.1       jtc 				offset = x_search(pat, 1, offset);
    965   1.1       jtc 			continue;
    966   1.1       jtc 		} else if (f == XFUNC_insert) {
    967   1.1       jtc 			/* add char to pattern */
    968   1.1       jtc 			/* overflow check... */
    969   1.1       jtc 			if (p >= &pat[sizeof(pat) - 1]) {
    970   1.1       jtc 				x_e_putc(BEL);
    971   1.1       jtc 				continue;
    972   1.1       jtc 			}
    973   1.1       jtc 			*p++ = c, *p = '\0';
    974   1.1       jtc 			if (offset >= 0) {
    975   1.1       jtc 				/* already have partial match */
    976   1.1       jtc 				offset = x_match(xbuf, pat);
    977   1.1       jtc 				if (offset >= 0) {
    978   1.1       jtc 					x_goto(xbuf + offset + (p - pat) - (*pat == '^'));
    979   1.1       jtc 					continue;
    980   1.1       jtc 				}
    981   1.1       jtc 			}
    982   1.1       jtc 			offset = x_search(pat, 0, offset);
    983   1.1       jtc 		} else { /* other command */
    984   1.1       jtc 			x_e_ungetc(c);
    985   1.1       jtc 			break;
    986   1.1       jtc 		}
    987   1.1       jtc 	}
    988   1.1       jtc 	if (offset < 0)
    989   1.1       jtc 		x_redraw(-1);
    990   1.1       jtc 	return KSTD;
    991   1.1       jtc }
    992   1.1       jtc 
    993   1.1       jtc /* search backward from current line */
    994   1.1       jtc static int
    995   1.1       jtc x_search(pat, sameline, offset)
    996   1.1       jtc 	char *pat;
    997   1.1       jtc 	int sameline;
    998   1.1       jtc 	int offset;
    999   1.1       jtc {
   1000   1.1       jtc 	register char **hp;
   1001   1.1       jtc 	int i;
   1002   1.1       jtc 
   1003  1.23  jdolecek 	for (hp = x_histp - (sameline ? 0 : 1) ; hp >= histlist; --hp) {
   1004   1.1       jtc 		i = x_match(*hp, pat);
   1005   1.1       jtc 		if (i >= 0) {
   1006   1.1       jtc 			if (offset < 0)
   1007   1.1       jtc 				x_e_putc('\n');
   1008   1.1       jtc 			x_load_hist(hp);
   1009   1.1       jtc 			x_goto(xbuf + i + strlen(pat) - (*pat == '^'));
   1010   1.1       jtc 			return i;
   1011   1.1       jtc 		}
   1012   1.1       jtc 	}
   1013   1.1       jtc 	x_e_putc(BEL);
   1014   1.1       jtc 	x_histp = histptr;
   1015   1.1       jtc 	return -1;
   1016   1.1       jtc }
   1017   1.1       jtc 
   1018   1.1       jtc /* return position of first match of pattern in string, else -1 */
   1019   1.1       jtc static int
   1020   1.1       jtc x_match(str, pat)
   1021   1.1       jtc 	char *str, *pat;
   1022   1.1       jtc {
   1023   1.1       jtc 	if (*pat == '^') {
   1024   1.1       jtc 		return (strncmp(str, pat+1, strlen(pat+1)) == 0) ? 0 : -1;
   1025   1.1       jtc 	} else {
   1026   1.1       jtc 		char *q = strstr(str, pat);
   1027   1.1       jtc 		return (q == NULL) ? -1 : q - str;
   1028   1.1       jtc 	}
   1029   1.1       jtc }
   1030   1.1       jtc 
   1031   1.1       jtc static int
   1032   1.1       jtc x_del_line(c)
   1033   1.1       jtc 	int c;
   1034   1.1       jtc {
   1035   1.1       jtc 	int	i, j;
   1036   1.1       jtc 
   1037   1.1       jtc 	*xep = 0;
   1038  1.24   mycroft 	i = xep - xbuf;
   1039   1.1       jtc 	j = x_size_str(xbuf);
   1040   1.1       jtc 	xcp = xbuf;
   1041   1.1       jtc 	x_push(i);
   1042   1.1       jtc 	xlp = xbp = xep = xbuf;
   1043   1.1       jtc 	xlp_valid = TRUE;
   1044   1.1       jtc 	*xcp = 0;
   1045   1.1       jtc 	xmp = NULL;
   1046   1.1       jtc 	x_redraw(j);
   1047   1.1       jtc 	return KSTD;
   1048   1.1       jtc }
   1049   1.1       jtc 
   1050   1.1       jtc static int
   1051   1.1       jtc x_mv_end(c)
   1052   1.1       jtc 	int c;
   1053   1.1       jtc {
   1054   1.1       jtc 	x_goto(xep);
   1055   1.1       jtc 	return KSTD;
   1056   1.1       jtc }
   1057   1.1       jtc 
   1058   1.1       jtc static int
   1059   1.1       jtc x_mv_begin(c)
   1060   1.1       jtc 	int c;
   1061   1.1       jtc {
   1062   1.1       jtc 	x_goto(xbuf);
   1063   1.1       jtc 	return KSTD;
   1064   1.1       jtc }
   1065   1.1       jtc 
   1066   1.1       jtc static int
   1067   1.1       jtc x_draw_line(c)
   1068   1.1       jtc 	int c;
   1069   1.1       jtc {
   1070   1.1       jtc 	x_redraw(-1);
   1071   1.1       jtc 	return KSTD;
   1072   1.1       jtc 
   1073   1.1       jtc }
   1074   1.1       jtc 
   1075   1.1       jtc /* Redraw (part of) the line.  If limit is < 0, the everything is redrawn
   1076   1.1       jtc  * on a NEW line, otherwise limit is the screen column up to which needs
   1077   1.1       jtc  * redrawing.
   1078   1.1       jtc  */
   1079   1.1       jtc static void
   1080   1.1       jtc x_redraw(limit)
   1081   1.1       jtc   int limit;
   1082   1.1       jtc {
   1083   1.1       jtc 	int	i, j;
   1084   1.1       jtc 	char	*cp;
   1085   1.1       jtc 
   1086   1.1       jtc 	x_adj_ok = 0;
   1087   1.1       jtc 	if (limit == -1)
   1088   1.1       jtc 		x_e_putc('\n');
   1089  1.24   mycroft 	else
   1090   1.1       jtc 		x_e_putc('\r');
   1091   1.1       jtc 	x_flush();
   1092   1.1       jtc 	if (xbp == xbuf)
   1093   1.1       jtc 	{
   1094   1.1       jtc 	  pprompt(prompt + prompt_skip, 0);
   1095   1.1       jtc 	  x_col = promptlen(prompt, (const char **) 0);
   1096   1.1       jtc 	}
   1097   1.1       jtc 	x_displen = xx_cols - 2 - x_col;
   1098   1.1       jtc 	xlp_valid = FALSE;
   1099   1.1       jtc 	cp = x_lastcp();
   1100   1.1       jtc 	x_zots(xbp);
   1101   1.1       jtc 	if (xbp != xbuf || xep > xlp)
   1102   1.1       jtc 	  limit = xx_cols;
   1103   1.1       jtc 	if (limit >= 0)
   1104   1.1       jtc 	{
   1105   1.1       jtc 	  if (xep > xlp)
   1106   1.1       jtc 	    i = 0;			/* we fill the line */
   1107   1.1       jtc 	  else
   1108   1.1       jtc 	    i = limit - (xlp - xbp);
   1109   1.1       jtc 
   1110   1.1       jtc 	  for (j = 0; j < i && x_col < (xx_cols - 2); j++)
   1111   1.1       jtc 	    x_e_putc(' ');
   1112   1.1       jtc 	  i = ' ';
   1113   1.1       jtc 	  if (xep > xlp)		/* more off screen */
   1114   1.1       jtc 	  {
   1115   1.1       jtc 	    if (xbp > xbuf)
   1116   1.1       jtc 	      i = '*';
   1117   1.1       jtc 	    else
   1118   1.1       jtc 	      i = '>';
   1119   1.1       jtc 	  }
   1120   1.1       jtc 	  else
   1121   1.1       jtc 	    if (xbp > xbuf)
   1122   1.1       jtc 	      i = '<';
   1123   1.1       jtc 	  x_e_putc(i);
   1124   1.1       jtc 	  j++;
   1125   1.1       jtc 	  while (j--)
   1126   1.1       jtc 	    x_e_putc('\b');
   1127   1.1       jtc 	}
   1128   1.1       jtc 	for (cp = xlp; cp > xcp; )
   1129   1.1       jtc 	  x_bs(*--cp);
   1130   1.1       jtc 	x_adj_ok = 1;
   1131   1.1       jtc 	D__(x_flush();)
   1132   1.1       jtc 	return;
   1133   1.1       jtc }
   1134   1.1       jtc 
   1135   1.1       jtc static int
   1136   1.1       jtc x_transpose(c)
   1137   1.1       jtc 	int c;
   1138   1.1       jtc {
   1139   1.1       jtc 	char	tmp;
   1140   1.1       jtc 
   1141   1.1       jtc 	/* What transpose is meant to do seems to be up for debate. This
   1142   1.1       jtc 	 * is a general summary of the options; the text is abcd with the
   1143  1.24   mycroft 	 * upper case character or underscore indicating the cursor position:
   1144   1.1       jtc 	 *     Who			Before	After  Before	After
   1145   1.1       jtc 	 *     at&t ksh in emacs mode:	abCd	abdC   abcd_	(bell)
   1146   1.1       jtc 	 *     at&t ksh in gmacs mode:	abCd	baCd   abcd_	abdc_
   1147   1.1       jtc 	 *     gnu emacs:		abCd	acbD   abcd_	abdc_
   1148   1.1       jtc 	 * Pdksh currently goes with GNU behavior since I believe this is the
   1149   1.1       jtc 	 * most common version of emacs, unless in gmacs mode, in which case
   1150  1.24   mycroft 	 * it does the at&t ksh gmacs mode.
   1151   1.1       jtc 	 * This should really be broken up into 3 functions so users can bind
   1152   1.1       jtc 	 * to the one they want.
   1153   1.1       jtc 	 */
   1154   1.1       jtc 	if (xcp == xbuf) {
   1155   1.1       jtc 		x_e_putc(BEL);
   1156   1.1       jtc 		return KSTD;
   1157   1.1       jtc 	} else if (xcp == xep || Flag(FGMACS)) {
   1158   1.1       jtc 		if (xcp - xbuf == 1) {
   1159   1.1       jtc 			x_e_putc(BEL);
   1160   1.1       jtc 			return KSTD;
   1161   1.1       jtc 		}
   1162   1.1       jtc 		/* Gosling/Unipress emacs style: Swap two characters before the
   1163   1.1       jtc 		 * cursor, do not change cursor position
   1164   1.1       jtc 		 */
   1165   1.1       jtc 		x_bs(xcp[-1]);
   1166   1.1       jtc 		x_bs(xcp[-2]);
   1167   1.1       jtc 		x_zotc(xcp[-1]);
   1168   1.1       jtc 		x_zotc(xcp[-2]);
   1169   1.1       jtc 		tmp = xcp[-1];
   1170   1.1       jtc 		xcp[-1] = xcp[-2];
   1171   1.1       jtc 		xcp[-2] = tmp;
   1172   1.1       jtc 	} else {
   1173   1.1       jtc 		/* GNU emacs style: Swap the characters before and under the
   1174   1.1       jtc 		 * cursor, move cursor position along one.
   1175   1.1       jtc 		 */
   1176   1.1       jtc 		x_bs(xcp[-1]);
   1177   1.1       jtc 		x_zotc(xcp[0]);
   1178   1.1       jtc 		x_zotc(xcp[-1]);
   1179   1.1       jtc 		tmp = xcp[-1];
   1180   1.1       jtc 		xcp[-1] = xcp[0];
   1181   1.1       jtc 		xcp[0] = tmp;
   1182   1.1       jtc 		x_bs(xcp[0]);
   1183   1.1       jtc 		x_goto(xcp + 1);
   1184   1.1       jtc 	}
   1185   1.1       jtc 	return KSTD;
   1186   1.1       jtc }
   1187   1.1       jtc 
   1188   1.1       jtc static int
   1189   1.1       jtc x_literal(c)
   1190   1.1       jtc 	int c;
   1191   1.1       jtc {
   1192   1.1       jtc 	x_curprefix = -1;
   1193   1.1       jtc 	return KSTD;
   1194   1.1       jtc }
   1195   1.1       jtc 
   1196   1.1       jtc static int
   1197   1.1       jtc x_meta1(c)
   1198   1.1       jtc 	int c;
   1199   1.1       jtc {
   1200   1.1       jtc 	x_curprefix = 1;
   1201   1.1       jtc 	return KSTD;
   1202   1.1       jtc }
   1203   1.1       jtc 
   1204   1.1       jtc static int
   1205   1.1       jtc x_meta2(c)
   1206   1.1       jtc 	int c;
   1207   1.1       jtc {
   1208   1.1       jtc 	x_curprefix = 2;
   1209   1.1       jtc 	return KSTD;
   1210   1.1       jtc }
   1211   1.1       jtc 
   1212   1.1       jtc #ifdef OS2
   1213   1.1       jtc static int
   1214   1.1       jtc x_meta3(c)
   1215   1.1       jtc 	int c;
   1216   1.1       jtc {
   1217   1.1       jtc 	x_curprefix = 3;
   1218   1.1       jtc 	return KSTD;
   1219   1.1       jtc }
   1220   1.1       jtc #endif /* OS2 */
   1221   1.1       jtc 
   1222   1.1       jtc static int
   1223   1.1       jtc x_kill(c)
   1224   1.1       jtc 	int c;
   1225   1.1       jtc {
   1226   1.1       jtc 	int col = xcp - xbuf;
   1227   1.1       jtc 	int lastcol = xep - xbuf;
   1228   1.1       jtc 	int ndel;
   1229   1.1       jtc 
   1230   1.1       jtc 	if (x_arg_defaulted)
   1231   1.1       jtc 		x_arg = lastcol;
   1232   1.1       jtc 	else if (x_arg > lastcol)
   1233   1.1       jtc 		x_arg = lastcol;
   1234   1.1       jtc 	ndel = x_arg - col;
   1235   1.1       jtc 	if (ndel < 0) {
   1236   1.1       jtc 		x_goto(xbuf + x_arg);
   1237   1.1       jtc 		ndel = -ndel;
   1238   1.1       jtc 	}
   1239   1.1       jtc 	x_delete(ndel, TRUE);
   1240   1.1       jtc 	return KSTD;
   1241   1.1       jtc }
   1242   1.1       jtc 
   1243   1.1       jtc static void
   1244   1.1       jtc x_push(nchars)
   1245   1.1       jtc 	int nchars;
   1246   1.1       jtc {
   1247   1.1       jtc 	char	*cp = str_nsave(xcp, nchars, AEDIT);
   1248   1.1       jtc 	if (killstack[killsp])
   1249   1.1       jtc 		afree((void *)killstack[killsp], AEDIT);
   1250   1.1       jtc 	killstack[killsp] = cp;
   1251   1.1       jtc 	killsp = (killsp + 1) % KILLSIZE;
   1252   1.1       jtc }
   1253   1.1       jtc 
   1254   1.1       jtc static int
   1255   1.1       jtc x_yank(c)
   1256   1.1       jtc 	int c;
   1257   1.1       jtc {
   1258   1.1       jtc 	if (killsp == 0)
   1259   1.1       jtc 		killtp = KILLSIZE;
   1260   1.1       jtc 	else
   1261   1.1       jtc 		killtp = killsp;
   1262  1.27    simonb 	killtp--;
   1263   1.1       jtc 	if (killstack[killtp] == 0)  {
   1264   1.1       jtc 		x_e_puts("\nnothing to yank");
   1265   1.1       jtc 		x_redraw(-1);
   1266   1.1       jtc 		return KSTD;
   1267   1.1       jtc 	}
   1268   1.1       jtc 	xmp = xcp;
   1269   1.1       jtc 	x_ins(killstack[killtp]);
   1270   1.1       jtc 	return KSTD;
   1271   1.1       jtc }
   1272   1.1       jtc 
   1273   1.1       jtc static int
   1274   1.1       jtc x_meta_yank(c)
   1275   1.1       jtc 	int c;
   1276   1.1       jtc {
   1277   1.1       jtc 	int	len;
   1278  1.20       wiz 	if ((x_last_command != XFUNC_yank && x_last_command != XFUNC_meta_yank)
   1279  1.20       wiz 	    || killstack[killtp] == 0) {
   1280  1.20       wiz 		killtp = killsp;
   1281   1.1       jtc 		x_e_puts("\nyank something first");
   1282   1.1       jtc 		x_redraw(-1);
   1283   1.1       jtc 		return KSTD;
   1284   1.1       jtc 	}
   1285   1.1       jtc 	len = strlen(killstack[killtp]);
   1286   1.1       jtc 	x_goto(xcp - len);
   1287   1.1       jtc 	x_delete(len, FALSE);
   1288   1.6   hubertf 	do {
   1289   1.1       jtc 		if (killtp == 0)
   1290   1.1       jtc 			killtp = KILLSIZE - 1;
   1291   1.1       jtc 		else
   1292   1.1       jtc 			killtp--;
   1293   1.6   hubertf 	} while (killstack[killtp] == 0);
   1294   1.1       jtc 	x_ins(killstack[killtp]);
   1295   1.1       jtc 	return KSTD;
   1296   1.1       jtc }
   1297   1.1       jtc 
   1298   1.1       jtc static int
   1299   1.1       jtc x_abort(c)
   1300   1.1       jtc 	int c;
   1301   1.1       jtc {
   1302   1.1       jtc 	/* x_zotc(c); */
   1303   1.1       jtc 	xlp = xep = xcp = xbp = xbuf;
   1304   1.1       jtc 	xlp_valid = TRUE;
   1305   1.1       jtc 	*xcp = 0;
   1306   1.1       jtc 	return KINTR;
   1307   1.1       jtc }
   1308   1.1       jtc 
   1309   1.1       jtc static int
   1310   1.1       jtc x_error(c)
   1311   1.1       jtc 	int c;
   1312   1.1       jtc {
   1313   1.1       jtc 	x_e_putc(BEL);
   1314   1.1       jtc 	return KSTD;
   1315   1.1       jtc }
   1316   1.1       jtc 
   1317   1.1       jtc static int
   1318   1.1       jtc x_stuffreset(c)
   1319   1.1       jtc 	int c;
   1320   1.1       jtc {
   1321   1.1       jtc #ifdef TIOCSTI
   1322   1.1       jtc 	(void)x_stuff(c);
   1323   1.1       jtc 	return KINTR;
   1324   1.1       jtc #else
   1325   1.1       jtc 	x_zotc(c);
   1326   1.1       jtc 	xlp = xcp = xep = xbp = xbuf;
   1327   1.1       jtc 	xlp_valid = TRUE;
   1328   1.1       jtc 	*xcp = 0;
   1329   1.1       jtc 	x_redraw(-1);
   1330   1.1       jtc 	return KSTD;
   1331   1.1       jtc #endif
   1332   1.1       jtc }
   1333   1.1       jtc 
   1334   1.1       jtc static int
   1335   1.1       jtc x_stuff(c)
   1336   1.1       jtc 	int c;
   1337   1.1       jtc {
   1338   1.1       jtc #if 0 || defined TIOCSTI
   1339   1.1       jtc 	char	ch = c;
   1340   1.1       jtc 	bool_t	savmode = x_mode(FALSE);
   1341   1.1       jtc 
   1342   1.1       jtc 	(void)ioctl(TTY, TIOCSTI, &ch);
   1343   1.1       jtc 	(void)x_mode(savmode);
   1344   1.1       jtc 	x_redraw(-1);
   1345   1.1       jtc #endif
   1346   1.1       jtc 	return KSTD;
   1347   1.1       jtc }
   1348   1.1       jtc 
   1349   1.1       jtc static char *
   1350   1.1       jtc x_mapin(cp)
   1351   1.1       jtc 	const char *cp;
   1352   1.1       jtc {
   1353   1.1       jtc 	char *new, *op;
   1354   1.1       jtc 
   1355   1.1       jtc 	op = new = str_save(cp, ATEMP);
   1356   1.1       jtc 	while (*cp)  {
   1357   1.1       jtc 		/* XXX -- should handle \^ escape? */
   1358   1.1       jtc 		if (*cp == '^')  {
   1359   1.1       jtc 			cp++;
   1360   1.1       jtc #ifdef OS2
   1361   1.1       jtc 			if (*cp == '0')	/* To define function keys */
   1362   1.1       jtc 				*op++ = 0xE0;
   1363   1.1       jtc 			else
   1364   1.1       jtc #endif /* OS2 */
   1365   1.1       jtc 			if (*cp >= '?')	/* includes '?'; ASCII */
   1366   1.1       jtc 				*op++ = CTRL(*cp);
   1367   1.1       jtc 			else  {
   1368   1.1       jtc 				*op++ = '^';
   1369   1.1       jtc 				cp--;
   1370   1.1       jtc 			}
   1371   1.1       jtc 		} else
   1372   1.1       jtc 			*op++ = *cp;
   1373   1.1       jtc 		cp++;
   1374   1.1       jtc 	}
   1375   1.1       jtc 	*op = '\0';
   1376   1.1       jtc 
   1377   1.1       jtc 	return new;
   1378   1.1       jtc }
   1379   1.1       jtc 
   1380   1.1       jtc static char *
   1381   1.1       jtc x_mapout(c)
   1382   1.1       jtc 	int c;
   1383   1.1       jtc {
   1384   1.1       jtc 	static char buf[8];
   1385   1.1       jtc 	register char *p = buf;
   1386   1.1       jtc 
   1387   1.1       jtc #ifdef OS2
   1388   1.6   hubertf 	if (c == 0xE0) {
   1389   1.1       jtc 		*p++ = '^';
   1390   1.1       jtc 		*p++ = '0';
   1391   1.6   hubertf 	} else
   1392   1.1       jtc #endif /* OS2 */
   1393  1.26       dsl 	if (iscntrl((unsigned char)c))  {
   1394   1.6   hubertf 		*p++ = '^';
   1395   1.6   hubertf 		*p++ = UNCTRL(c);
   1396   1.1       jtc 	} else
   1397   1.1       jtc 		*p++ = c;
   1398   1.1       jtc 	*p = 0;
   1399   1.1       jtc 	return buf;
   1400   1.1       jtc }
   1401   1.1       jtc 
   1402   1.1       jtc static void
   1403   1.1       jtc x_print(prefix, key)
   1404   1.1       jtc 	int prefix, key;
   1405   1.1       jtc {
   1406   1.1       jtc 	if (prefix == 1)
   1407   1.1       jtc 		shprintf("%s", x_mapout(x_prefix1));
   1408   1.1       jtc 	if (prefix == 2)
   1409   1.1       jtc 		shprintf("%s", x_mapout(x_prefix2));
   1410   1.1       jtc #ifdef OS2
   1411   1.1       jtc 	if (prefix == 3)
   1412   1.1       jtc 		shprintf("%s", x_mapout(x_prefix3));
   1413   1.1       jtc #endif /* OS2 */
   1414   1.1       jtc 	shprintf("%s = ", x_mapout(key));
   1415   1.1       jtc 	if (x_tab[prefix][key] != XFUNC_ins_string)
   1416   1.1       jtc 		shprintf("%s\n", x_ftab[x_tab[prefix][key]].xf_name);
   1417   1.1       jtc 	else
   1418   1.1       jtc 		shprintf("'%s'\n", x_atab[prefix][key]);
   1419   1.1       jtc }
   1420   1.1       jtc 
   1421   1.1       jtc int
   1422   1.1       jtc x_bind(a1, a2, macro, list)
   1423   1.1       jtc 	const char *a1, *a2;
   1424   1.1       jtc 	int macro;		/* bind -m */
   1425   1.1       jtc 	int list;		/* bind -l */
   1426   1.1       jtc {
   1427   1.1       jtc 	Findex f;
   1428   1.1       jtc 	int prefix, key;
   1429   1.1       jtc 	char *sp = NULL;
   1430   1.1       jtc 	char *m1, *m2;
   1431   1.1       jtc 
   1432   1.1       jtc 	if (x_tab == NULL) {
   1433   1.1       jtc 		bi_errorf("cannot bind, not a tty");
   1434   1.1       jtc 		return 1;
   1435   1.1       jtc 	}
   1436   1.1       jtc 
   1437   1.1       jtc 	/* List function names */
   1438   1.1       jtc 	if (list) {
   1439   1.1       jtc 		for (f = 0; f < NELEM(x_ftab); f++)
   1440   1.1       jtc 			if (x_ftab[f].xf_name
   1441   1.1       jtc 			    && !(x_ftab[f].xf_flags & XF_NOBIND))
   1442   1.1       jtc 				shprintf("%s\n", x_ftab[f].xf_name);
   1443   1.1       jtc 		return 0;
   1444   1.1       jtc 	}
   1445   1.1       jtc 
   1446   1.1       jtc 	if (a1 == NULL) {
   1447   1.1       jtc 		for (prefix = 0; prefix < X_NTABS; prefix++)
   1448   1.1       jtc 			for (key = 0; key < X_TABSZ; key++) {
   1449   1.1       jtc 				f = x_tab[prefix][key];
   1450   1.1       jtc 				if (f == XFUNC_insert || f == XFUNC_error
   1451   1.1       jtc 				    || (macro && f != XFUNC_ins_string))
   1452   1.1       jtc 					continue;
   1453   1.1       jtc 				x_print(prefix, key);
   1454   1.1       jtc 			}
   1455   1.1       jtc 		return 0;
   1456   1.1       jtc 	}
   1457   1.1       jtc 
   1458   1.1       jtc 	m1 = x_mapin(a1);
   1459   1.1       jtc 	prefix = key = 0;
   1460   1.1       jtc 	for (;; m1++) {
   1461   1.1       jtc 		key = *m1 & CHARMASK;
   1462   1.1       jtc 		if (x_tab[prefix][key] == XFUNC_meta1)
   1463   1.1       jtc 			prefix = 1;
   1464   1.1       jtc 		else if (x_tab[prefix][key] == XFUNC_meta2)
   1465   1.1       jtc 			prefix = 2;
   1466   1.1       jtc #ifdef OS2
   1467   1.1       jtc 		else if (x_tab[prefix][key] == XFUNC_meta3)
   1468   1.1       jtc 			prefix = 3;
   1469   1.1       jtc #endif /* OS2 */
   1470   1.1       jtc 		else
   1471   1.1       jtc 			break;
   1472   1.1       jtc 	}
   1473   1.1       jtc 
   1474   1.1       jtc 	if (a2 == NULL) {
   1475   1.1       jtc 		x_print(prefix, key);
   1476   1.1       jtc 		return 0;
   1477   1.1       jtc 	}
   1478   1.1       jtc 
   1479   1.1       jtc 	if (*a2 == 0)
   1480   1.1       jtc 		f = XFUNC_insert;
   1481   1.1       jtc 	else if (!macro) {
   1482   1.1       jtc 		for (f = 0; f < NELEM(x_ftab); f++)
   1483   1.1       jtc 			if (x_ftab[f].xf_name
   1484   1.1       jtc 			    && strcmp(x_ftab[f].xf_name, a2) == 0)
   1485   1.1       jtc 				break;
   1486   1.1       jtc 		if (f == NELEM(x_ftab) || x_ftab[f].xf_flags & XF_NOBIND) {
   1487   1.1       jtc 			bi_errorf("%s: no such function", a2);
   1488   1.1       jtc 			return 1;
   1489   1.1       jtc 		}
   1490   1.1       jtc #if 0		/* This breaks the bind commands that map arrow keys */
   1491   1.1       jtc 		if (f == XFUNC_meta1)
   1492   1.1       jtc 			x_prefix1 = key;
   1493   1.1       jtc 		if (f == XFUNC_meta2)
   1494   1.1       jtc 			x_prefix2 = key;
   1495   1.1       jtc #endif /* 0 */
   1496   1.1       jtc 	} else {
   1497   1.1       jtc 		f = XFUNC_ins_string;
   1498   1.1       jtc 		m2 = x_mapin(a2);
   1499   1.1       jtc 		sp = str_save(m2, AEDIT);
   1500   1.1       jtc 	}
   1501   1.1       jtc 
   1502   1.1       jtc 	if (x_tab[prefix][key] == XFUNC_ins_string && x_atab[prefix][key])
   1503   1.1       jtc 		afree((void *)x_atab[prefix][key], AEDIT);
   1504   1.1       jtc 	x_tab[prefix][key] = f;
   1505   1.1       jtc 	x_atab[prefix][key] = sp;
   1506   1.1       jtc 
   1507   1.6   hubertf 	/* Track what the user has bound so x_emacs_keys() won't toast things */
   1508   1.6   hubertf 	if (f == XFUNC_insert)
   1509   1.6   hubertf 		x_bound[(prefix * X_TABSZ + key) / 8] &=
   1510   1.6   hubertf 			~(1 << ((prefix * X_TABSZ + key) % 8));
   1511   1.6   hubertf 	else
   1512   1.6   hubertf 		x_bound[(prefix * X_TABSZ + key) / 8] |=
   1513   1.6   hubertf 			(1 << ((prefix * X_TABSZ + key) % 8));
   1514   1.6   hubertf 
   1515   1.1       jtc 	return 0;
   1516   1.1       jtc }
   1517   1.1       jtc 
   1518   1.1       jtc void
   1519   1.1       jtc x_init_emacs()
   1520   1.1       jtc {
   1521   1.1       jtc 	register int i, j;
   1522  1.15    provos 	char *locale;
   1523   1.1       jtc 
   1524   1.1       jtc 	ainit(AEDIT);
   1525   1.1       jtc 	x_nextcmd = -1;
   1526   1.1       jtc 
   1527   1.1       jtc 	x_tab = (Findex (*)[X_TABSZ]) alloc(sizeofN(*x_tab, X_NTABS), AEDIT);
   1528   1.1       jtc 	for (j = 0; j < X_TABSZ; j++)
   1529   1.1       jtc 		x_tab[0][j] = XFUNC_insert;
   1530   1.1       jtc 	for (i = 1; i < X_NTABS; i++)
   1531   1.1       jtc 		for (j = 0; j < X_TABSZ; j++)
   1532   1.1       jtc 			x_tab[i][j] = XFUNC_error;
   1533   1.1       jtc 	for (i = 0; i < NELEM(x_defbindings); i++)
   1534  1.24   mycroft 		x_tab[(unsigned char)x_defbindings[i].xdb_tab][x_defbindings[i].xdb_char]
   1535   1.1       jtc 			= x_defbindings[i].xdb_func;
   1536   1.1       jtc 
   1537   1.1       jtc 	x_atab = (char *(*)[X_TABSZ]) alloc(sizeofN(*x_atab, X_NTABS), AEDIT);
   1538   1.1       jtc 	for (i = 1; i < X_NTABS; i++)
   1539   1.1       jtc 		for (j = 0; j < X_TABSZ; j++)
   1540   1.1       jtc 			x_atab[i][j] = NULL;
   1541  1.15    provos 
   1542  1.15    provos 	/* Determine if we can translate meta key or use 8-bit AscII
   1543  1.15    provos 	 * XXX - It would be nice if there was a locale attribute to
   1544  1.15    provos 	 * determine if the locale is 7-bit or not.
   1545  1.15    provos 	 */
   1546  1.15    provos 	locale = setlocale(LC_CTYPE, NULL);
   1547  1.24   mycroft 	if (locale != NULL || !strcmp(locale, "C") || !strcmp(locale, "POSIX"))
   1548  1.24   mycroft 		Flag(FEMACSUSEMETA) = 0;
   1549   1.1       jtc }
   1550   1.1       jtc 
   1551  1.24   mycroft static void bind_if_not_bound(int p, int k, int func);
   1552  1.24   mycroft 
   1553   1.6   hubertf static void
   1554   1.6   hubertf bind_if_not_bound(p, k, func)
   1555   1.6   hubertf 	int p, k;
   1556   1.6   hubertf 	int func;
   1557   1.6   hubertf {
   1558   1.6   hubertf 	/* Has user already bound this key?  If so, don't override it */
   1559   1.6   hubertf 	if (x_bound[((p) * X_TABSZ + (k)) / 8]
   1560   1.6   hubertf 	    & (1 << (((p) * X_TABSZ + (k)) % 8)))
   1561   1.6   hubertf 		return;
   1562   1.6   hubertf 
   1563   1.6   hubertf 	x_tab[p][k] = func;
   1564   1.6   hubertf }
   1565   1.6   hubertf 
   1566   1.1       jtc void
   1567   1.1       jtc x_emacs_keys(ec)
   1568   1.1       jtc 	X_chars *ec;
   1569   1.1       jtc {
   1570   1.6   hubertf 	if (ec->erase >= 0) {
   1571   1.6   hubertf 		bind_if_not_bound(0, ec->erase, XFUNC_del_back);
   1572   1.6   hubertf 		bind_if_not_bound(1, ec->erase, XFUNC_del_bword);
   1573   1.6   hubertf 	}
   1574   1.6   hubertf 	if (ec->kill >= 0)
   1575   1.6   hubertf 		bind_if_not_bound(0, ec->kill, XFUNC_del_line);
   1576   1.6   hubertf 	if (ec->werase >= 0)
   1577   1.6   hubertf 		bind_if_not_bound(0, ec->werase, XFUNC_del_bword);
   1578   1.6   hubertf 	if (ec->intr >= 0)
   1579   1.6   hubertf 		bind_if_not_bound(0, ec->intr, XFUNC_abort);
   1580   1.6   hubertf 	if (ec->quit >= 0)
   1581   1.6   hubertf 		bind_if_not_bound(0, ec->quit, XFUNC_noop);
   1582   1.1       jtc }
   1583   1.1       jtc 
   1584   1.1       jtc static int
   1585   1.1       jtc x_set_mark(c)
   1586   1.1       jtc 	int c;
   1587   1.1       jtc {
   1588   1.1       jtc 	xmp = xcp;
   1589   1.1       jtc 	return KSTD;
   1590   1.1       jtc }
   1591   1.1       jtc 
   1592   1.1       jtc static int
   1593   1.1       jtc x_kill_region(c)
   1594   1.1       jtc 	int c;
   1595   1.1       jtc {
   1596   1.1       jtc 	int	rsize;
   1597   1.1       jtc 	char	*xr;
   1598   1.1       jtc 
   1599   1.1       jtc 	if (xmp == NULL) {
   1600   1.1       jtc 		x_e_putc(BEL);
   1601   1.1       jtc 		return KSTD;
   1602   1.1       jtc 	}
   1603   1.1       jtc 	if (xmp > xcp) {
   1604   1.1       jtc 		rsize = xmp - xcp;
   1605   1.1       jtc 		xr = xcp;
   1606   1.1       jtc 	} else {
   1607   1.1       jtc 		rsize = xcp - xmp;
   1608   1.1       jtc 		xr = xmp;
   1609   1.1       jtc 	}
   1610   1.1       jtc 	x_goto(xr);
   1611   1.1       jtc 	x_delete(rsize, TRUE);
   1612   1.1       jtc 	xmp = xr;
   1613   1.1       jtc 	return KSTD;
   1614   1.1       jtc }
   1615   1.1       jtc 
   1616   1.1       jtc static int
   1617   1.1       jtc x_xchg_point_mark(c)
   1618   1.1       jtc 	int c;
   1619   1.1       jtc {
   1620   1.1       jtc 	char	*tmp;
   1621   1.1       jtc 
   1622   1.1       jtc 	if (xmp == NULL) {
   1623   1.1       jtc 		x_e_putc(BEL);
   1624   1.1       jtc 		return KSTD;
   1625   1.1       jtc 	}
   1626   1.1       jtc 	tmp = xmp;
   1627   1.1       jtc 	xmp = xcp;
   1628   1.1       jtc 	x_goto( tmp );
   1629   1.1       jtc 	return KSTD;
   1630   1.1       jtc }
   1631   1.1       jtc 
   1632   1.1       jtc static int
   1633   1.1       jtc x_version(c)
   1634   1.1       jtc 	int c;
   1635   1.1       jtc {
   1636   1.1       jtc 	char *o_xbuf = xbuf, *o_xend = xend;
   1637   1.1       jtc 	char *o_xbp = xbp, *o_xep = xep, *o_xcp = xcp;
   1638   1.1       jtc 	int lim = x_lastcp() - xbp;
   1639   1.1       jtc 
   1640   1.1       jtc 	xbuf = xbp = xcp = (char *) ksh_version + 4;
   1641   1.1       jtc 	xend = xep = (char *) ksh_version + 4 + strlen(ksh_version + 4);
   1642   1.1       jtc 	x_redraw(lim);
   1643   1.1       jtc 	x_flush();
   1644   1.1       jtc 
   1645   1.1       jtc 	c = x_e_getc();
   1646   1.1       jtc 	xbuf = o_xbuf;
   1647   1.1       jtc 	xend = o_xend;
   1648   1.1       jtc 	xbp = o_xbp;
   1649   1.1       jtc 	xep = o_xep;
   1650   1.1       jtc 	xcp = o_xcp;
   1651   1.1       jtc 	x_redraw(strlen(ksh_version));
   1652   1.1       jtc 
   1653   1.1       jtc 	if (c < 0)
   1654   1.1       jtc 		return KSTD;
   1655   1.1       jtc 	/* This is what at&t ksh seems to do...  Very bizarre */
   1656   1.1       jtc 	if (c != ' ')
   1657   1.1       jtc 		x_e_ungetc(c);
   1658   1.1       jtc 
   1659   1.1       jtc 	return KSTD;
   1660   1.1       jtc }
   1661   1.1       jtc 
   1662   1.1       jtc static int
   1663   1.1       jtc x_noop(c)
   1664   1.1       jtc 	int c;
   1665   1.1       jtc {
   1666   1.1       jtc 	return KSTD;
   1667   1.1       jtc }
   1668   1.1       jtc 
   1669   1.1       jtc #ifdef SILLY
   1670   1.1       jtc static int
   1671   1.1       jtc x_game_of_life(c)
   1672   1.1       jtc 	int c;
   1673   1.1       jtc {
   1674   1.1       jtc 	char	newbuf [256+1];
   1675   1.1       jtc 	register char *ip, *op;
   1676   1.1       jtc 	int	i, len;
   1677   1.1       jtc 
   1678   1.1       jtc 	i = xep - xbuf;
   1679   1.1       jtc 	*xep = 0;
   1680   1.1       jtc 	len = x_size_str(xbuf);
   1681   1.1       jtc 	xcp = xbp = xbuf;
   1682   1.1       jtc 	memmove(newbuf+1, xbuf, i);
   1683   1.1       jtc 	newbuf[0] = 'A';
   1684   1.1       jtc 	newbuf[i] = 'A';
   1685   1.1       jtc 	for (ip = newbuf+1, op = xbuf; --i >= 0; ip++, op++)  {
   1686   1.1       jtc 		/*  Empty space  */
   1687   1.1       jtc 		if (*ip < '@' || *ip == '_' || *ip == 0x7F)  {
   1688   1.1       jtc 			/*  Two adults, make whoopee */
   1689   1.1       jtc 			if (ip[-1] < '_' && ip[1] < '_')  {
   1690   1.1       jtc 				/*  Make kid look like parents.  */
   1691   1.1       jtc 				*op = '`' + ((ip[-1] + ip[1])/2)%32;
   1692   1.1       jtc 				if (*op == 0x7F) /* Birth defect */
   1693   1.1       jtc 					*op = '`';
   1694   1.1       jtc 			}
   1695   1.1       jtc 			else
   1696   1.1       jtc 				*op = ' ';	/* nothing happens */
   1697   1.1       jtc 			continue;
   1698   1.1       jtc 		}
   1699   1.1       jtc 		/*  Child */
   1700   1.1       jtc 		if (*ip > '`')  {
   1701   1.1       jtc 			/*  All alone, dies  */
   1702   1.1       jtc 			if (ip[-1] == ' ' && ip[1] == ' ')
   1703   1.1       jtc 				*op = ' ';
   1704   1.1       jtc 			else	/*  Gets older */
   1705   1.1       jtc 				*op = *ip-'`'+'@';
   1706   1.1       jtc 			continue;
   1707   1.1       jtc 		}
   1708   1.1       jtc 		/*  Adult  */
   1709   1.1       jtc 		/*  Overcrowded, dies */
   1710   1.1       jtc 		if (ip[-1] >= '@' && ip[1] >= '@')  {
   1711   1.1       jtc 			*op = ' ';
   1712   1.1       jtc 			continue;
   1713   1.1       jtc 		}
   1714   1.1       jtc 		*op = *ip;
   1715   1.1       jtc 	}
   1716   1.1       jtc 	*op = 0;
   1717   1.1       jtc 	x_redraw(len);
   1718   1.1       jtc 	return KSTD;
   1719   1.1       jtc }
   1720   1.1       jtc #endif
   1721   1.1       jtc 
   1722   1.1       jtc /*
   1723   1.1       jtc  *	File/command name completion routines
   1724   1.1       jtc  */
   1725   1.1       jtc 
   1726   1.1       jtc 
   1727   1.1       jtc static int
   1728   1.1       jtc x_comp_comm(c)
   1729   1.1       jtc 	int c;
   1730   1.1       jtc {
   1731   1.1       jtc 	do_complete(XCF_COMMAND, CT_COMPLETE);
   1732   1.1       jtc 	return KSTD;
   1733   1.1       jtc }
   1734   1.1       jtc static int
   1735   1.1       jtc x_list_comm(c)
   1736   1.1       jtc 	int c;
   1737   1.1       jtc {
   1738   1.1       jtc 	do_complete(XCF_COMMAND, CT_LIST);
   1739   1.1       jtc 	return KSTD;
   1740   1.1       jtc }
   1741   1.1       jtc static int
   1742   1.1       jtc x_complete(c)
   1743   1.1       jtc 	int c;
   1744   1.1       jtc {
   1745   1.1       jtc 	do_complete(XCF_COMMAND_FILE, CT_COMPLETE);
   1746   1.1       jtc 	return KSTD;
   1747   1.1       jtc }
   1748   1.1       jtc static int
   1749   1.1       jtc x_enumerate(c)
   1750   1.1       jtc 	int c;
   1751   1.1       jtc {
   1752   1.1       jtc 	do_complete(XCF_COMMAND_FILE, CT_LIST);
   1753   1.1       jtc 	return KSTD;
   1754   1.1       jtc }
   1755   1.1       jtc static int
   1756   1.1       jtc x_comp_file(c)
   1757   1.1       jtc 	int c;
   1758   1.1       jtc {
   1759   1.1       jtc 	do_complete(XCF_FILE, CT_COMPLETE);
   1760   1.1       jtc 	return KSTD;
   1761   1.1       jtc }
   1762   1.1       jtc static int
   1763   1.1       jtc x_list_file(c)
   1764   1.1       jtc 	int c;
   1765   1.1       jtc {
   1766   1.1       jtc 	do_complete(XCF_FILE, CT_LIST);
   1767   1.1       jtc 	return KSTD;
   1768   1.1       jtc }
   1769   1.1       jtc static int
   1770   1.1       jtc x_comp_list(c)
   1771   1.1       jtc 	int c;
   1772   1.1       jtc {
   1773   1.1       jtc 	do_complete(XCF_COMMAND_FILE, CT_COMPLIST);
   1774   1.1       jtc 	return KSTD;
   1775   1.1       jtc }
   1776   1.1       jtc static int
   1777   1.1       jtc x_expand(c)
   1778   1.1       jtc 	int c;
   1779   1.1       jtc {
   1780   1.1       jtc 	char **words;
   1781   1.1       jtc 	int nwords = 0;
   1782   1.1       jtc 	int start, end;
   1783   1.1       jtc 	int is_command;
   1784   1.1       jtc 	int i;
   1785   1.1       jtc 
   1786   1.1       jtc 	nwords = x_cf_glob(XCF_FILE,
   1787   1.1       jtc 		xbuf, xep - xbuf, xcp - xbuf,
   1788   1.1       jtc 		&start, &end, &words, &is_command);
   1789   1.1       jtc 
   1790   1.1       jtc 	if (nwords == 0) {
   1791   1.1       jtc 		x_e_putc(BEL);
   1792   1.1       jtc 		return KSTD;
   1793   1.1       jtc 	}
   1794   1.1       jtc 
   1795   1.1       jtc 	x_goto(xbuf + start);
   1796   1.1       jtc 	x_delete(end - start, FALSE);
   1797  1.22       wiz 	for (i = 0; i < nwords;) {
   1798  1.22       wiz 		if (x_escape(words[i], strlen(words[i]), x_emacs_putbuf) < 0 ||
   1799  1.22       wiz 		    (++i < nwords && x_ins(space) < 0))
   1800   1.1       jtc 		{
   1801   1.1       jtc 			x_e_putc(BEL);
   1802   1.1       jtc 			return KSTD;
   1803   1.1       jtc 		}
   1804  1.22       wiz 	}
   1805  1.22       wiz 	x_adjust();
   1806   1.1       jtc 
   1807   1.1       jtc 	return KSTD;
   1808   1.1       jtc }
   1809   1.1       jtc 
   1810   1.1       jtc /* type == 0 for list, 1 for complete and 2 for complete-list */
   1811   1.1       jtc static void
   1812   1.1       jtc do_complete(flags, type)
   1813   1.1       jtc 	int flags;	/* XCF_{COMMAND,FILE,COMMAND_FILE} */
   1814   1.1       jtc 	Comp_type type;
   1815   1.1       jtc {
   1816   1.1       jtc 	char **words;
   1817  1.12    provos 	int nwords;
   1818  1.12    provos 	int start, end, nlen, olen;
   1819   1.1       jtc 	int is_command;
   1820  1.12    provos 	int completed = 0;
   1821  1.12    provos 
   1822  1.12    provos 	nwords = x_cf_glob(flags, xbuf, xep - xbuf, xcp - xbuf,
   1823  1.24   mycroft 			    &start, &end, &words, &is_command);
   1824  1.12    provos 	/* no match */
   1825   1.1       jtc 	if (nwords == 0) {
   1826   1.1       jtc 		x_e_putc(BEL);
   1827   1.1       jtc 		return;
   1828   1.1       jtc 	}
   1829  1.18       wiz 
   1830  1.12    provos 	if (type == CT_LIST) {
   1831   1.1       jtc 		x_print_expansions(nwords, words, is_command);
   1832   1.1       jtc 		x_redraw(0);
   1833  1.12    provos 		x_free_words(nwords, words);
   1834  1.18       wiz 		return;
   1835  1.12    provos 	}
   1836   1.1       jtc 
   1837  1.12    provos 	olen = end - start;
   1838  1.12    provos 	nlen = x_longest_prefix(nwords, words);
   1839  1.14    provos 	/* complete */
   1840  1.17       wiz 	if (nwords == 1 || nlen > olen) {
   1841  1.12    provos 		x_goto(xbuf + start);
   1842  1.12    provos 		x_delete(olen, FALSE);
   1843  1.12    provos 		x_escape(words[0], nlen, x_emacs_putbuf);
   1844  1.12    provos 		x_adjust();
   1845  1.12    provos 		completed = 1;
   1846  1.12    provos 	}
   1847  1.14    provos 	/* add space if single non-dir match */
   1848  1.12    provos 	if ((nwords == 1) && (!ISDIRSEP(words[0][nlen - 1]))) {
   1849  1.12    provos 		x_ins(space);
   1850  1.12    provos 		completed = 1;
   1851  1.12    provos 	}
   1852  1.12    provos 
   1853  1.12    provos 	if (type == CT_COMPLIST && !completed) {
   1854  1.12    provos 		x_print_expansions(nwords, words, is_command);
   1855  1.12    provos 		completed = 1;
   1856  1.12    provos 	}
   1857   1.1       jtc 
   1858  1.24   mycroft 	if (completed)
   1859  1.24   mycroft 		x_redraw(0);
   1860   1.1       jtc 
   1861  1.12    provos 	x_free_words(nwords, words);
   1862   1.1       jtc }
   1863   1.1       jtc 
   1864   1.1       jtc /* NAME:
   1865   1.1       jtc  *      x_adjust - redraw the line adjusting starting point etc.
   1866   1.1       jtc  *
   1867   1.1       jtc  * DESCRIPTION:
   1868  1.24   mycroft  *      This function is called when we have exceeded the bounds
   1869  1.24   mycroft  *      of the edit window.  It increments x_adj_done so that
   1870  1.24   mycroft  *      functions like x_ins and x_delete know that we have been
   1871  1.24   mycroft  *      called and can skip the x_bs() stuff which has already
   1872   1.1       jtc  *      been done by x_redraw.
   1873   1.1       jtc  *
   1874   1.1       jtc  * RETURN VALUE:
   1875   1.1       jtc  *      None
   1876   1.1       jtc  */
   1877   1.1       jtc 
   1878   1.1       jtc static void
   1879   1.1       jtc x_adjust()
   1880   1.1       jtc {
   1881   1.1       jtc   x_adj_done++;			/* flag the fact that we were called. */
   1882   1.1       jtc   /*
   1883   1.1       jtc    * we had a problem if the prompt length > xx_cols / 2
   1884   1.1       jtc    */
   1885   1.1       jtc   if ((xbp = xcp - (x_displen / 2)) < xbuf)
   1886   1.1       jtc     xbp = xbuf;
   1887   1.1       jtc   xlp_valid = FALSE;
   1888   1.1       jtc   x_redraw(xx_cols);
   1889   1.1       jtc   x_flush();
   1890   1.1       jtc }
   1891   1.1       jtc 
   1892   1.1       jtc static int unget_char = -1;
   1893   1.1       jtc 
   1894   1.1       jtc static void
   1895   1.1       jtc x_e_ungetc(c)
   1896   1.1       jtc 	int c;
   1897   1.1       jtc {
   1898   1.1       jtc 	unget_char = c;
   1899   1.1       jtc }
   1900   1.1       jtc 
   1901   1.1       jtc static int
   1902   1.1       jtc x_e_getc()
   1903   1.1       jtc {
   1904   1.1       jtc 	int c;
   1905   1.1       jtc 
   1906   1.1       jtc 	if (unget_char >= 0) {
   1907   1.1       jtc 		c = unget_char;
   1908   1.1       jtc 		unget_char = -1;
   1909   1.1       jtc 	} else {
   1910   1.1       jtc 		if (macroptr)  {
   1911  1.28    rillig 			c = (unsigned char) *macroptr++;
   1912   1.1       jtc 			if (!*macroptr)
   1913   1.1       jtc 				macroptr = (char *) 0;
   1914   1.1       jtc 		} else
   1915   1.1       jtc 			c = x_getc();
   1916   1.1       jtc 	}
   1917   1.1       jtc 
   1918   1.1       jtc 	return c <= CHARMASK ? c : (c & CHARMASK);
   1919   1.1       jtc }
   1920   1.1       jtc 
   1921   1.1       jtc static void
   1922   1.1       jtc x_e_putc(c)
   1923   1.1       jtc 	int c;
   1924   1.1       jtc {
   1925   1.1       jtc   if (c == '\r' || c == '\n')
   1926   1.1       jtc     x_col = 0;
   1927   1.1       jtc   if (x_col < xx_cols)
   1928   1.1       jtc   {
   1929   1.1       jtc     x_putc(c);
   1930   1.1       jtc     switch(c)
   1931   1.1       jtc     {
   1932   1.1       jtc     case BEL:
   1933   1.1       jtc       break;
   1934   1.1       jtc     case '\r':
   1935   1.1       jtc     case '\n':
   1936   1.1       jtc     break;
   1937   1.1       jtc     case '\b':
   1938   1.1       jtc       x_col--;
   1939   1.1       jtc       break;
   1940   1.1       jtc     default:
   1941   1.1       jtc       x_col++;
   1942   1.1       jtc       break;
   1943   1.1       jtc     }
   1944   1.1       jtc   }
   1945   1.1       jtc   if (x_adj_ok && (x_col < 0 || x_col >= (xx_cols - 2)))
   1946   1.1       jtc   {
   1947   1.1       jtc     x_adjust();
   1948   1.1       jtc   }
   1949   1.1       jtc }
   1950   1.1       jtc 
   1951   1.1       jtc #ifdef DEBUG
   1952   1.1       jtc static int
   1953   1.1       jtc x_debug_info(c)
   1954   1.1       jtc 	int c;
   1955   1.1       jtc {
   1956   1.1       jtc 	x_flush();
   1957   1.1       jtc 	shellf("\nksh debug:\n");
   1958   1.1       jtc 	shellf("\tx_col == %d,\t\tx_cols == %d,\tx_displen == %d\n",
   1959   1.1       jtc 		 x_col, xx_cols, x_displen);
   1960   1.1       jtc 	shellf("\txcp == 0x%lx,\txep == 0x%lx\n", (long) xcp, (long) xep);
   1961   1.1       jtc 	shellf("\txbp == 0x%lx,\txbuf == 0x%lx\n", (long) xbp, (long) xbuf);
   1962   1.1       jtc 	shellf("\txlp == 0x%lx\n", (long) xlp);
   1963   1.1       jtc 	shellf("\txlp == 0x%lx\n", (long) x_lastcp());
   1964   1.1       jtc 	shellf(newline);
   1965   1.1       jtc 	x_redraw(-1);
   1966   1.1       jtc 	return 0;
   1967   1.1       jtc }
   1968   1.1       jtc #endif
   1969   1.1       jtc 
   1970   1.1       jtc static void
   1971   1.1       jtc x_e_puts(s)
   1972   1.1       jtc 	const char *s;
   1973   1.1       jtc {
   1974   1.1       jtc   register int	adj = x_adj_done;
   1975   1.1       jtc 
   1976   1.1       jtc   while (*s && adj == x_adj_done)
   1977   1.1       jtc     x_e_putc(*s++);
   1978   1.1       jtc }
   1979   1.1       jtc 
   1980   1.1       jtc /* NAME:
   1981   1.1       jtc  *      x_set_arg - set an arg value for next function
   1982   1.1       jtc  *
   1983   1.1       jtc  * DESCRIPTION:
   1984   1.1       jtc  *      This is a simple implementation of M-[0-9].
   1985   1.1       jtc  *
   1986   1.1       jtc  * RETURN VALUE:
   1987   1.1       jtc  *      KSTD
   1988   1.1       jtc  */
   1989   1.1       jtc 
   1990   1.1       jtc static int
   1991   1.1       jtc x_set_arg(c)
   1992   1.1       jtc 	int c;
   1993   1.1       jtc {
   1994   1.1       jtc 	int n = 0;
   1995   1.1       jtc 	int first = 1;
   1996   1.1       jtc 
   1997   1.1       jtc 	c &= CHARMASK;	/* strip command prefix */
   1998   1.1       jtc 	for (; c >= 0 && isdigit(c); c = x_e_getc(), first = 0)
   1999   1.1       jtc 		n = n * 10 + (c - '0');
   2000   1.1       jtc 	if (c < 0 || first) {
   2001   1.1       jtc 		x_e_putc(BEL);
   2002   1.1       jtc 		x_arg = 1;
   2003   1.1       jtc 		x_arg_defaulted = 1;
   2004   1.1       jtc 	} else {
   2005   1.1       jtc 		x_e_ungetc(c);
   2006   1.1       jtc 		x_arg = n;
   2007   1.1       jtc 		x_arg_defaulted = 0;
   2008   1.1       jtc 	}
   2009   1.1       jtc 	return KSTD;
   2010   1.1       jtc }
   2011   1.1       jtc 
   2012   1.1       jtc 
   2013   1.1       jtc /* Comment or uncomment the current line. */
   2014   1.1       jtc static int
   2015   1.1       jtc x_comment(c)
   2016   1.1       jtc 	int c;
   2017   1.1       jtc {
   2018   1.1       jtc 	int oldsize = x_size_str(xbuf);
   2019   1.1       jtc 	int len = xep - xbuf;
   2020   1.1       jtc 	int ret = x_do_comment(xbuf, xend - xbuf, &len);
   2021   1.1       jtc 
   2022   1.1       jtc 	if (ret < 0)
   2023   1.1       jtc 		x_e_putc(BEL);
   2024   1.1       jtc 	else {
   2025   1.1       jtc 		xep = xbuf + len;
   2026   1.1       jtc 		*xep = '\0';
   2027   1.1       jtc 		xcp = xbp = xbuf;
   2028   1.1       jtc 		x_redraw(oldsize);
   2029   1.1       jtc 		if (ret > 0)
   2030   1.1       jtc 			return x_newline('\n');
   2031   1.1       jtc 	}
   2032   1.1       jtc 	return KSTD;
   2033   1.1       jtc }
   2034   1.1       jtc 
   2035   1.1       jtc 
   2036   1.1       jtc /* NAME:
   2037   1.1       jtc  *      x_prev_histword - recover word from prev command
   2038   1.1       jtc  *
   2039   1.1       jtc  * DESCRIPTION:
   2040  1.24   mycroft  *      This function recovers the last word from the previous
   2041  1.24   mycroft  *      command and inserts it into the current edit line.  If a
   2042  1.24   mycroft  *      numeric arg is supplied then the n'th word from the
   2043  1.24   mycroft  *      start of the previous command is used.
   2044  1.24   mycroft  *
   2045   1.1       jtc  *      Bound to M-.
   2046   1.1       jtc  *
   2047   1.1       jtc  * RETURN VALUE:
   2048   1.1       jtc  *      KSTD
   2049   1.1       jtc  */
   2050   1.1       jtc 
   2051   1.1       jtc static int
   2052   1.1       jtc x_prev_histword(c)
   2053   1.1       jtc 	int c;
   2054   1.1       jtc {
   2055   1.1       jtc   register char *rcp;
   2056   1.1       jtc   char *cp;
   2057   1.1       jtc 
   2058   1.6   hubertf   cp = *histptr;
   2059   1.6   hubertf   if (!cp)
   2060   1.1       jtc     x_e_putc(BEL);
   2061   1.6   hubertf   else if (x_arg_defaulted) {
   2062   1.1       jtc     rcp = &cp[strlen(cp) - 1];
   2063   1.1       jtc     /*
   2064   1.1       jtc      * ignore white-space after the last word
   2065   1.1       jtc      */
   2066   1.1       jtc     while (rcp > cp && is_cfs(*rcp))
   2067   1.1       jtc       rcp--;
   2068   1.1       jtc     while (rcp > cp && !is_cfs(*rcp))
   2069   1.1       jtc       rcp--;
   2070   1.1       jtc     if (is_cfs(*rcp))
   2071   1.1       jtc       rcp++;
   2072   1.1       jtc     x_ins(rcp);
   2073   1.1       jtc   } else {
   2074   1.1       jtc     int c;
   2075  1.24   mycroft 
   2076   1.1       jtc     rcp = cp;
   2077   1.1       jtc     /*
   2078   1.1       jtc      * ignore white-space at start of line
   2079   1.1       jtc      */
   2080   1.1       jtc     while (*rcp && is_cfs(*rcp))
   2081   1.1       jtc       rcp++;
   2082   1.1       jtc     while (x_arg-- > 1)
   2083   1.1       jtc     {
   2084   1.1       jtc       while (*rcp && !is_cfs(*rcp))
   2085   1.1       jtc 	rcp++;
   2086   1.1       jtc       while (*rcp && is_cfs(*rcp))
   2087   1.1       jtc 	rcp++;
   2088   1.1       jtc     }
   2089   1.1       jtc     cp = rcp;
   2090   1.1       jtc     while (*rcp && !is_cfs(*rcp))
   2091   1.1       jtc       rcp++;
   2092   1.1       jtc     c = *rcp;
   2093   1.1       jtc     *rcp = '\0';
   2094   1.1       jtc     x_ins(cp);
   2095   1.1       jtc     *rcp = c;
   2096   1.1       jtc   }
   2097   1.1       jtc   return KSTD;
   2098   1.1       jtc }
   2099   1.1       jtc 
   2100   1.1       jtc /* Uppercase N(1) words */
   2101   1.1       jtc static int
   2102   1.1       jtc x_fold_upper(c)
   2103   1.1       jtc   int c;
   2104   1.1       jtc {
   2105   1.1       jtc 	return x_fold_case('U');
   2106   1.1       jtc }
   2107   1.1       jtc 
   2108   1.1       jtc /* Lowercase N(1) words */
   2109   1.1       jtc static int
   2110   1.1       jtc x_fold_lower(c)
   2111   1.1       jtc   int c;
   2112   1.1       jtc {
   2113   1.1       jtc 	return x_fold_case('L');
   2114   1.1       jtc }
   2115   1.1       jtc 
   2116   1.1       jtc /* Lowercase N(1) words */
   2117   1.1       jtc static int
   2118  1.24   mycroft x_fold_capitalize(c)
   2119   1.1       jtc   int c;
   2120   1.1       jtc {
   2121   1.1       jtc 	return x_fold_case('C');
   2122   1.1       jtc }
   2123   1.1       jtc 
   2124   1.1       jtc /* NAME:
   2125  1.24   mycroft  *      x_fold_case - convert word to UPPER/lower/Capital case
   2126   1.1       jtc  *
   2127   1.1       jtc  * DESCRIPTION:
   2128   1.1       jtc  *      This function is used to implement M-U,M-u,M-L,M-l,M-C and M-c
   2129   1.1       jtc  *      to UPPER case, lower case or Capitalize words.
   2130   1.1       jtc  *
   2131   1.1       jtc  * RETURN VALUE:
   2132   1.1       jtc  *      None
   2133   1.1       jtc  */
   2134   1.1       jtc 
   2135   1.1       jtc static int
   2136   1.1       jtc x_fold_case(c)
   2137   1.1       jtc 	int c;
   2138   1.1       jtc {
   2139   1.1       jtc 	char *cp = xcp;
   2140   1.1       jtc 
   2141   1.1       jtc 	if (cp == xep) {
   2142   1.1       jtc 		x_e_putc(BEL);
   2143   1.1       jtc 		return KSTD;
   2144   1.1       jtc 	}
   2145   1.1       jtc 	while (x_arg--) {
   2146   1.1       jtc 		/*
   2147  1.24   mycroft 		 * first skip over any white-space
   2148   1.1       jtc 		 */
   2149   1.1       jtc 		while (cp != xep && is_mfs(*cp))
   2150   1.1       jtc 			cp++;
   2151   1.1       jtc 		/*
   2152   1.1       jtc 		 * do the first char on its own since it may be
   2153   1.1       jtc 		 * a different action than for the rest.
   2154   1.1       jtc 		 */
   2155   1.1       jtc 		if (cp != xep) {
   2156   1.1       jtc 			if (c == 'L') {		/* lowercase */
   2157   1.5  christos 				if (isupper((unsigned char)*cp))
   2158  1.26       dsl 					*cp = tolower((unsigned char)*cp);
   2159   1.1       jtc 			} else {		/* uppercase, capitialize */
   2160   1.5  christos 				if (islower((unsigned char)*cp))
   2161  1.26       dsl 					*cp = toupper((unsigned char)*cp);
   2162   1.1       jtc 			}
   2163   1.1       jtc 			cp++;
   2164   1.1       jtc 		}
   2165   1.1       jtc 		/*
   2166   1.1       jtc 		 * now for the rest of the word
   2167   1.1       jtc 		 */
   2168   1.5  christos 		while (cp != xep && !is_mfs((unsigned char)*cp)) {
   2169   1.1       jtc 			if (c == 'U') {		/* uppercase */
   2170   1.5  christos 				if (islower((unsigned char)*cp))
   2171  1.26       dsl 					*cp = toupper((unsigned char)*cp);
   2172   1.1       jtc 			} else {		/* lowercase, capitialize */
   2173   1.5  christos 				if (isupper((unsigned char)*cp))
   2174  1.26       dsl 					*cp = tolower((unsigned char)*cp);
   2175   1.1       jtc 			}
   2176   1.1       jtc 			cp++;
   2177   1.1       jtc 		}
   2178   1.1       jtc 	}
   2179   1.1       jtc 	x_goto(cp);
   2180   1.1       jtc 	return KSTD;
   2181   1.1       jtc }
   2182   1.1       jtc 
   2183   1.1       jtc /* NAME:
   2184   1.1       jtc  *      x_lastcp - last visible char
   2185   1.1       jtc  *
   2186   1.1       jtc  * SYNOPSIS:
   2187   1.1       jtc  *      x_lastcp()
   2188   1.1       jtc  *
   2189   1.1       jtc  * DESCRIPTION:
   2190  1.24   mycroft  *      This function returns a pointer to that  char in the
   2191  1.24   mycroft  *      edit buffer that will be the last displayed on the
   2192   1.1       jtc  *      screen.  The sequence:
   2193  1.24   mycroft  *
   2194   1.1       jtc  *      for (cp = x_lastcp(); cp > xcp; cp)
   2195   1.1       jtc  *        x_bs(*--cp);
   2196  1.24   mycroft  *
   2197   1.1       jtc  *      Will position the cursor correctly on the screen.
   2198   1.1       jtc  *
   2199   1.1       jtc  * RETURN VALUE:
   2200   1.1       jtc  *      cp or NULL
   2201   1.1       jtc  */
   2202   1.1       jtc 
   2203   1.1       jtc static char *
   2204   1.1       jtc x_lastcp()
   2205   1.1       jtc {
   2206   1.1       jtc   register char *rcp;
   2207   1.1       jtc   register int i;
   2208   1.1       jtc 
   2209   1.1       jtc   if (!xlp_valid)
   2210   1.1       jtc   {
   2211   1.1       jtc     for (i = 0, rcp = xbp; rcp < xep && i < x_displen; rcp++)
   2212   1.1       jtc       i += x_size(*rcp);
   2213   1.1       jtc     xlp = rcp;
   2214   1.1       jtc   }
   2215   1.1       jtc   xlp_valid = TRUE;
   2216   1.1       jtc   return (xlp);
   2217   1.1       jtc }
   2218   1.1       jtc 
   2219   1.1       jtc #endif /* EDIT */
   2220