Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-3]: src/lib/libedit Pull up revision 1.55 (requested by agc in ti...



details:   https://anonhg.NetBSD.org/src/rev/56df1bbbb28e
branches:  netbsd-3
changeset: 575934:56df1bbbb28e
user:      tron <tron%NetBSD.org@localhost>
date:      Sat May 28 14:03:25 2005 +0000

description:
Pull up revision 1.55 (requested by agc in ticket #353):
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 ee6a4d16113a -r 56df1bbbb28e lib/libedit/readline.c
--- a/lib/libedit/readline.c    Sat May 28 14:02:27 2005 +0000
+++ b/lib/libedit/readline.c    Sat May 28 14:03:25 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: readline.c,v 1.49.2.1 2005/05/28 14:02:27 tron Exp $   */
+/*     $NetBSD: readline.c,v 1.49.2.2 2005/05/28 14:03:25 tron 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.49.2.1 2005/05/28 14:02:27 tron Exp $");
+__RCSID("$NetBSD: readline.c,v 1.49.2.2 2005/05/28 14:03:25 tron Exp $");
 #endif /* not lint && not SCCSID */
 
 #include <sys/types.h>
@@ -85,7 +85,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