aboutsummaryrefslogtreecommitdiff
path: root/histedit.h
diff options
context:
space:
mode:
Diffstat (limited to 'histedit.h')
-rw-r--r--histedit.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/histedit.h b/histedit.h
index 40f0dd10e88e..bb54567c5713 100644
--- a/histedit.h
+++ b/histedit.h
@@ -1,4 +1,4 @@
-/* $NetBSD: histedit.h,v 1.28 2005/07/14 15:00:58 christos Exp $ */
+/* $NetBSD: histedit.h,v 1.31 2006/12/15 22:13:33 christos Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -41,7 +41,7 @@
#define _HISTEDIT_H_
#define LIBEDIT_MAJOR 2
-#define LIBEDIT_MINOR 9
+#define LIBEDIT_MINOR 10
#include <sys/types.h>
#include <stdio.h>
@@ -109,7 +109,7 @@ int el_parse(EditLine *, int, const char **);
* Low level editline access functions
*/
int el_set(EditLine *, int, ...);
-int el_get(EditLine *, int, void *);
+int el_get(EditLine *, int, ...);
unsigned char _el_fn_complete(EditLine *, int);
/*
@@ -133,6 +133,9 @@ unsigned char _el_fn_complete(EditLine *, int);
#define EL_CLIENTDATA 14 /* , void *); */
#define EL_UNBUFFERED 15 /* , int); */
#define EL_PREP_TERM 16 /* , int); */
+#define EL_GETTC 17 /* , const char *, ..., NULL); */
+#define EL_GETFP 18 /* , int, FILE **) */
+#define EL_SETFP 19 /* , int, FILE *) */
#define EL_BUILTIN_GETCFN (NULL)