Deleted Added
full compact
0a1
> /* $FreeBSD: head/contrib/libreadline/readline.h 58314 2000-03-19 22:00:57Z ache $ */
10c11
< as published by the Free Software Foundation; either version 1, or
---
> as published by the Free Software Foundation; either version 2, or
21c22
< 675 Mass Ave, Cambridge, MA 02139, USA. */
---
> 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
23,24d23
< /* $FreeBSD: head/contrib/libreadline/readline.h 55987 2000-01-14 18:57:33Z bde $ */
<
197c196
< /* Not available unless readline is compiled -DPAREN_MATCHING. */
---
> /* Bindable command used when inserting a matching close character. */
304a304,309
> extern Keymap rl_make_bare_keymap __P((void));
> extern Keymap rl_copy_keymap __P((Keymap));
> extern Keymap rl_make_keymap __P((void));
> extern void rl_discard_keymap __P((Keymap));
>
> extern Keymap rl_get_keymap_by_name __P((char *));
305a311,312
> extern void rl_set_keymap __P((Keymap));
> extern Keymap rl_get_keymap __P((void));
327a335
> extern int rl_on_new_line_with_prompt __P((void));
332c340
< #if defined (__STDC__) && defined (USE_VARARGS) && defined (PREFER_STDARG)
---
> #if (defined (__STDC__) || defined (__cplusplus)) && defined (USE_VARARGS) && defined (PREFER_STDARG)
401a410,412
> /* True if this is real GNU readline. */
> extern int rl_gnu_readline_p;
>
464a476,484
> /* If non-zero, the application has already printed the prompt (rl_prompt)
> before calling readline, so readline should not output it the first time
> redisplay is done. */
> extern int rl_already_prompted;
>
> /* A non-zero value means to read only this many characters rather than
> up to a character bound to accept-line. */
> extern int rl_num_chars_to_read;
>
609c629
< extern char *savestring (); /* XXX backwards compatibility */
---
> extern char *savestring __P((char *)); /* XXX backwards compatibility */