diff options
author | Stefan Farfeleder <stefanf@FreeBSD.org> | 2005-08-07 20:55:59 +0000 |
---|---|---|
committer | Stefan Farfeleder <stefanf@FreeBSD.org> | 2005-08-07 20:55:59 +0000 |
commit | 76d00450e675825131c7cd211e274537cd42a542 (patch) | |
tree | 8538b11e03844d50562fadbdbfa30a6bc7066ca1 /lib/libedit/parse.h | |
parent | 515faf2fbe6236d68cb21aff818c194dbed1fa9d (diff) |
Sync libedit with recent NetBSD developments. Including improvements to the
vi-mode, removal of clause 3, cleanups and the export of the tokenization
functions.
Not included: config.h, filecomplete.{c,h}
Notes
Notes:
svn path=/head/; revision=148834
Diffstat (limited to 'lib/libedit/parse.h')
-rw-r--r-- | lib/libedit/parse.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/lib/libedit/parse.h b/lib/libedit/parse.h index 356750d7ad60..cca4abf1999c 100644 --- a/lib/libedit/parse.h +++ b/lib/libedit/parse.h @@ -13,11 +13,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * @@ -34,7 +30,7 @@ * SUCH DAMAGE. * * @(#)parse.h 8.1 (Berkeley) 6/4/93 - * $NetBSD: parse.h,v 1.3 1999/07/02 15:21:26 simonb Exp $ + * $NetBSD: parse.h,v 1.6 2005/05/29 04:58:15 lukem Exp $ * $FreeBSD$ */ @@ -45,7 +41,7 @@ #define _h_el_parse protected int parse_line(EditLine *, const char *); -protected int parse__escape(const char ** const); +protected int parse__escape(const char **); protected char *parse__string(char *, const char *); protected int parse_cmd(EditLine *, const char *); |