summaryrefslogtreecommitdiff
path: root/lib/libedit/chared.c
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2000-11-11 22:18:57 +0000
committerchristos <christos@NetBSD.org>2000-11-11 22:18:57 +0000
commitff59a2faddea84bf67d6d5bfefd122463e352005 (patch)
tree004fdf1e5869f97a2c8c939d4ff2e7df883730ed /lib/libedit/chared.c
parent890463ed5e992b4d15ff866200191fad79a02714 (diff)
- add support for home and end keys.
- improve debugging support
Diffstat (limited to 'lib/libedit/chared.c')
-rw-r--r--lib/libedit/chared.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libedit/chared.c b/lib/libedit/chared.c
index 93db66557e6..a4d0768000d 100644
--- a/lib/libedit/chared.c
+++ b/lib/libedit/chared.c
@@ -1,4 +1,4 @@
-/* $NetBSD: chared.c,v 1.9 2000/09/04 22:06:28 lukem Exp $ */
+/* $NetBSD: chared.c,v 1.10 2000/11/11 22:18:57 christos Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -41,7 +41,7 @@
#if 0
static char sccsid[] = "@(#)chared.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: chared.c,v 1.9 2000/09/04 22:06:28 lukem Exp $");
+__RCSID("$NetBSD: chared.c,v 1.10 2000/11/11 22:18:57 christos Exp $");
#endif
#endif /* not lint && not SCCSID */
@@ -341,7 +341,7 @@ cv_delfini(EditLine *el)
case NOP:
case INSERT:
default:
- abort();
+ EL_ABORT((el->el_errfile, "Bad oaction %d\n", oaction));
break;
}