diff options
author | stefanf <stefanf@FreeBSD.org> | 2007-06-10 19:06:09 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2007-06-10 19:06:09 +0000 |
commit | ce047ca5eeaa67687d3b47fc9efb30d6bd34d8eb (patch) | |
tree | f27a090c796f4ade2d63452e9542fdbe365a55ec /lib/libedit/term.h | |
parent | dac62e7ff2f6d9dbbc83623d558cd1169444ce35 (diff) | |
download | FreeBSD-src-ce047ca5eeaa67687d3b47fc9efb30d6bd34d8eb.zip FreeBSD-src-ce047ca5eeaa67687d3b47fc9efb30d6bd34d8eb.tar.gz |
Merge NetBSD changes, among them:
el.c 1.44, el.h 1.17, editline.3 1.53, histedit.h 1.31:
# add EL_GETFP, and EL_SETFP.
el.c 1.42, term.c 1.46, term.h 1.18, editline.3 1.52, histedit.h 1.29:
# - Add more readline functions, enough for gdb-6.5
# - Make el_get varyadic, and implement EL_GETTC.
# - XXX: the EL_SETTC api will change in the future.
Note: The latter change breaks the ABI of the el_get() function.
Approved by: re (kensmith)
Diffstat (limited to 'lib/libedit/term.h')
-rw-r--r-- | lib/libedit/term.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libedit/term.h b/lib/libedit/term.h index 95ad8f9..8ded5d7 100644 --- a/lib/libedit/term.h +++ b/lib/libedit/term.h @@ -30,7 +30,7 @@ * SUCH DAMAGE. * * @(#)term.h 8.1 (Berkeley) 6/4/93 - * $NetBSD: term.h,v 1.17 2006/03/06 21:11:56 christos Exp $ + * $NetBSD: term.h,v 1.18 2006/11/24 00:01:17 christos Exp $ * $FreeBSD$ */ @@ -100,6 +100,7 @@ protected void term_end(EditLine *); protected void term_get(EditLine *, const char **); protected int term_set(EditLine *, const char *); protected int term_settc(EditLine *, int, const char **); +protected int term_gettc(EditLine *, int, char **); protected int term_telltc(EditLine *, int, const char **); protected int term_echotc(EditLine *, int, const char **); protected void term_writec(EditLine *, int); |