diff options
author | Stefan Farfeleder <stefanf@FreeBSD.org> | 2007-06-10 19:06:09 +0000 |
---|---|---|
committer | Stefan Farfeleder <stefanf@FreeBSD.org> | 2007-06-10 19:06:09 +0000 |
commit | 47517a704283d4ac120dcefc27dab7107e4d03de (patch) | |
tree | f27a090c796f4ade2d63452e9542fdbe365a55ec /include | |
parent | 9cd40e64b4fb4a559eb67a266f768143086bc5d9 (diff) | |
download | src-47517a704283d4ac120dcefc27dab7107e4d03de.tar.gz src-47517a704283d4ac120dcefc27dab7107e4d03de.zip |
Notes
Diffstat (limited to 'include')
-rw-r--r-- | include/histedit.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/histedit.h b/include/histedit.h index a4db871fc964..0db9f75ed883 100644 --- a/include/histedit.h +++ b/include/histedit.h @@ -30,7 +30,7 @@ * SUCH DAMAGE. * * @(#)histedit.h 8.2 (Berkeley) 1/3/94 - * $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 $ * $FreeBSD$ */ @@ -104,7 +104,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, ...); #if 0 unsigned char _el_fn_complete(EditLine *, int); #endif @@ -130,6 +130,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) |