Module Name: src
Committed By: nia
Date: Thu Aug 18 14:10:05 UTC 2022
Modified Files:
src/bin/sh: histedit.c
Log Message:
sh(1): Allow an explicit set -o vi or set -o emacs to override ~/.editrc
To generate a diff of this commit:
cvs rdiff -u -r1.62 -r1.63 src/bin/sh/histedit.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/bin/sh/histedit.c
diff -u src/bin/sh/histedit.c:1.62 src/bin/sh/histedit.c:1.63
--- src/bin/sh/histedit.c:1.62 Wed Aug 17 22:27:17 2022
+++ src/bin/sh/histedit.c Thu Aug 18 14:10:05 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: histedit.c,v 1.62 2022/08/17 22:27:17 nia Exp $ */
+/* $NetBSD: histedit.c,v 1.63 2022/08/18 14:10:05 nia Exp $ */
/*-
* Copyright (c) 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)histedit.c 8.2 (Berkeley) 5/4/95";
#else
-__RCSID("$NetBSD: histedit.c,v 1.62 2022/08/17 22:27:17 nia Exp $");
+__RCSID("$NetBSD: histedit.c,v 1.63 2022/08/18 14:10:05 nia Exp $");
#endif
#endif /* not lint */
@@ -176,11 +176,11 @@ bad:
}
if (el) {
INTOFF;
+ el_source(el, lookupvar("EDITRC"));
if (Vflag)
el_set(el, EL_EDITOR, "vi");
else if (Eflag)
el_set(el, EL_EDITOR, "emacs");
- el_source(el, lookupvar("EDITRC"));
el_set(el, EL_BIND, "^I",
tabcomplete ? "rl-complete" : "ed-insert", NULL);
INTON;