Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libedit Use the correct type for the stored callback fun...
details: https://anonhg.NetBSD.org/src/rev/73fd3cb56526
branches: trunk
changeset: 581131:73fd3cb56526
user: agc <agc%NetBSD.org@localhost>
date: Fri May 27 14:01:46 2005 +0000
description:
Use the correct type for the stored callback function
diffstat:
lib/libedit/readline.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 31200df24c4e -r 73fd3cb56526 lib/libedit/readline.c
--- a/lib/libedit/readline.c Fri May 27 12:48:49 2005 +0000
+++ b/lib/libedit/readline.c Fri May 27 14:01:46 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: readline.c,v 1.54 2005/05/27 11:35:07 agc Exp $ */
+/* $NetBSD: readline.c,v 1.55 2005/05/27 14:01:46 agc Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
#include "config.h"
#if !defined(lint) && !defined(SCCSID)
-__RCSID("$NetBSD: readline.c,v 1.54 2005/05/27 11:35:07 agc Exp $");
+__RCSID("$NetBSD: readline.c,v 1.55 2005/05/27 14:01:46 agc Exp $");
#endif /* not lint && not SCCSID */
#include <sys/types.h>
@@ -86,7 +86,7 @@
int rl_point = 0;
int rl_end = 0;
char *rl_line_buffer = NULL;
-VFunction *rl_linefunc = NULL;
+VCPFunction *rl_linefunc = NULL;
int rl_done = 0;
VFunction *rl_event_hook = NULL;
Home |
Main Index |
Thread Index |
Old Index