summaryrefslogtreecommitdiff
path: root/lib/libedit
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>2001-11-08 19:34:41 +0000
committermycroft <mycroft@NetBSD.org>2001-11-08 19:34:41 +0000
commit09aca455ce9edac2e31a10de4e62ec2880ab442c (patch)
tree1139bd1758cd2c036c14af538af5fbb20aa7d71a /lib/libedit
parent64a6ea2e082b32609007fae0d0cc9a3f105c5652 (diff)
Remove an unused variable.
Diffstat (limited to 'lib/libedit')
-rw-r--r--lib/libedit/el.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/libedit/el.c b/lib/libedit/el.c
index 8cee390c7ce..f051afcd0d6 100644
--- a/lib/libedit/el.c
+++ b/lib/libedit/el.c
@@ -1,4 +1,4 @@
-/* $NetBSD: el.c,v 1.25 2001/11/02 04:47:47 christos Exp $ */
+/* $NetBSD: el.c,v 1.26 2001/11/08 19:34:41 mycroft Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -41,7 +41,7 @@
#if 0
static char sccsid[] = "@(#)el.c 8.2 (Berkeley) 1/3/94";
#else
-__RCSID("$NetBSD: el.c,v 1.25 2001/11/02 04:47:47 christos Exp $");
+__RCSID("$NetBSD: el.c,v 1.26 2001/11/08 19:34:41 mycroft Exp $");
#endif
#endif /* not lint && not SCCSID */
@@ -65,9 +65,6 @@ el_init(const char *prog, FILE *fin, FILE *fout, FILE *ferr)
{
EditLine *el = (EditLine *) el_malloc(sizeof(EditLine));
-#ifdef DEBUG
- char *tty;
-#endif
if (el == NULL)
return (NULL);