Module Name: src
Committed By: christos
Date: Thu Jul 12 18:46:20 UTC 2012
Modified Files:
src/lib/libedit: readline.c
Log Message:
PR/46678: Ian Wienand: Add stub implementation for rl_free_line_state()
To generate a diff of this commit:
cvs rdiff -u -r1.104 -r1.105 src/lib/libedit/readline.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/readline.c
diff -u src/lib/libedit/readline.c:1.104 src/lib/libedit/readline.c:1.105
--- src/lib/libedit/readline.c:1.104 Mon Jun 4 20:30:22 2012
+++ src/lib/libedit/readline.c Thu Jul 12 14:46:20 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: readline.c,v 1.104 2012/06/05 00:30:22 christos Exp $ */
+/* $NetBSD: readline.c,v 1.105 2012/07/12 18:46:20 christos Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
#include "config.h"
#if !defined(lint) && !defined(SCCSID)
-__RCSID("$NetBSD: readline.c,v 1.104 2012/06/05 00:30:22 christos Exp $");
+__RCSID("$NetBSD: readline.c,v 1.105 2012/07/12 18:46:20 christos Exp $");
#endif /* not lint && not SCCSID */
#include <sys/types.h>
@@ -2267,3 +2267,8 @@ rl_on_new_line(void)
{
return 0;
}
+
+void
+rl_free_line_state(void)
+{
+}