Use el_source() so we pick up .editrc
This commit is contained in:
parent
2f02ff5d8a
commit
1e31ba6301
@ -135,6 +135,7 @@ nslookup_yy_input(buf, result, max_size, intr)
|
||||
el_set(el, EL_EDITOR, "emacs");
|
||||
el_set(el, EL_PROMPT, nslookup_prompt);
|
||||
el_set(el, EL_SIGNAL, 1);
|
||||
el_source(el, NULL);
|
||||
}
|
||||
|
||||
if ((bp = el_gets(el, &num)) == NULL || num == 0) {
|
||||
|
@ -20,7 +20,7 @@
|
||||
|
||||
#ifndef lint
|
||||
static const char rcsid[] =
|
||||
"$Id: cdcontrol.c,v 1.18 1999/01/31 15:30:21 billf Exp $";
|
||||
"$Id: cdcontrol.c,v 1.19 1999/08/19 03:29:11 mdodd Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <ctype.h>
|
||||
@ -950,6 +950,7 @@ input (int *cmd)
|
||||
el_set(el, EL_EDITOR, "emacs");
|
||||
el_set(el, EL_PROMPT, cdcontrol_prompt);
|
||||
el_set(el, EL_SIGNAL, 1);
|
||||
el_source(el, NULL);
|
||||
}
|
||||
if ((bp = el_gets(el, &num)) == NULL || num == 0)
|
||||
return (0);
|
||||
|
@ -43,7 +43,7 @@ static const char copyright[] =
|
||||
static char sccsid[] = "@(#)lpc.c 8.3 (Berkeley) 4/28/95";
|
||||
#endif
|
||||
static const char rcsid[] =
|
||||
"$Id: lpc.c,v 1.8 1998/09/11 18:49:31 wollman Exp $";
|
||||
"$Id: lpc.c,v 1.9 1999/08/19 03:29:13 mdodd Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -165,6 +165,7 @@ cmdscanner()
|
||||
el_set(el, EL_EDITOR, "emacs");
|
||||
el_set(el, EL_PROMPT, lpc_prompt);
|
||||
el_set(el, EL_SIGNAL, 1);
|
||||
el_source(el, NULL);
|
||||
}
|
||||
if ((bp = el_gets(el, &num)) == NULL || num == 0)
|
||||
return;
|
||||
|
@ -820,6 +820,7 @@ getcmds()
|
||||
el_set(el, EL_EDITOR, "emacs");
|
||||
el_set(el, EL_PROMPT, xntpdc_prompt);
|
||||
el_set(el, EL_SIGNAL, 1);
|
||||
el_source(el, NULL);
|
||||
}
|
||||
if ((bp = el_gets(el, &num)) == NULL || num == 0)
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user