summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>1998-03-22 00:43:04 +0000
committerBrian Somers <brian@FreeBSD.org>1998-03-22 00:43:04 +0000
commit23e877a8e16114c66e6e697e6faf06ca0089679c (patch)
treef68687f308ef7a8e539fc77d3b9d8873212fed0c
parent52403fe6de3d99e677b0d47a011962ebfed84253 (diff)
Notes
-rw-r--r--usr.sbin/pppctl/pppctl.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/pppctl/pppctl.c b/usr.sbin/pppctl/pppctl.c
index 92be1155744a..918e0ec768cb 100644
--- a/usr.sbin/pppctl/pppctl.c
+++ b/usr.sbin/pppctl/pppctl.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: pppctl.c,v 1.14 1997/12/21 12:11:13 brian Exp $
+ * $Id: pppctl.c,v 1.15 1997/12/27 13:44:42 brian Exp $
*/
#include <sys/types.h>
@@ -364,11 +364,12 @@ main(int argc, char **argv)
edit = el_init("pppctl", stdin, stdout);
el_source(edit, NULL);
el_set(edit, EL_PROMPT, GetPrompt);
- if ((env = getenv("EL_EDITOR")))
+ if ((env = getenv("EL_EDITOR"))) {
if (!strcmp(env, "vi"))
el_set(edit, EL_EDITOR, "vi");
else if (!strcmp(env, "emacs"))
el_set(edit, EL_EDITOR, "emacs");
+ }
el_set(edit, EL_SIGNAL, 1);
el_set(edit, EL_HIST, history, (const char *)hist);
while ((l = smartgets(edit, &len, fd))) {