From 6dc8ab99b20a02d64773ff9ca6bd10092ee80bae Mon Sep 17 00:00:00 2001 From: obrien Date: Thu, 24 Jan 2002 13:54:19 +0000 Subject: Fix problem where with PicoBSD the shell coredumps if it does not find an entry for its terminal type in /etc/termcap. Submitted by: bde --- lib/libedit/term.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libedit/term.c') diff --git a/lib/libedit/term.c b/lib/libedit/term.c index 83813a5..03cd4c4 100644 --- a/lib/libedit/term.c +++ b/lib/libedit/term.c @@ -338,9 +338,9 @@ term_init(EditLine *el) return (-1); (void) memset(el->el_term.t_val, 0, T_val * sizeof(int)); term_outfile = el->el_outfile; + term_init_arrow(el); if (term_set(el, NULL) == -1) return (-1); - term_init_arrow(el); return (0); } /* term_end(): -- cgit v1.1