Module Name:    src
Committed By:   christos
Date:           Tue Jan  1 15:34:02 UTC 2013

Modified Files:
        src/lib/libedit: map.c

Log Message:
remove dead assignment (Christoph Mallon)


To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/lib/libedit/map.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libedit/map.c
diff -u src/lib/libedit/map.c:1.32 src/lib/libedit/map.c:1.33
--- src/lib/libedit/map.c:1.32	Tue Jan  1 10:33:06 2013
+++ src/lib/libedit/map.c	Tue Jan  1 10:34:02 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: map.c,v 1.32 2013/01/01 15:33:06 christos Exp $	*/
+/*	$NetBSD: map.c,v 1.33 2013/01/01 15:34:02 christos Exp $	*/
 
 /*-
  * Copyright (c) 1992, 1993
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)map.c	8.1 (Berkeley) 6/4/93";
 #else
-__RCSID("$NetBSD: map.c,v 1.32 2013/01/01 15:33:06 christos Exp $");
+__RCSID("$NetBSD: map.c,v 1.33 2013/01/01 15:34:02 christos Exp $");
 #endif
 #endif /* not lint && not SCCSID */
 
@@ -1249,7 +1249,7 @@ map_bind(EditLine *el, int argc, const C
 	Char inbuf[EL_BUFSIZ];
 	Char outbuf[EL_BUFSIZ];
 	const Char *in = NULL;
-	Char *out = NULL;
+	Char *out;
 	el_bindings_t *bp, *ep;
 	int cmd;
 	int key;

Reply via email to