# HG changeset patch # User jwe # Date 811495899 0 # Node ID b8a8821962aff28c0745c650b97873529ce32b07 # Parent 4c3d46b02f99855c65fb342d96ea2529b0877df3 [project @ 1995-09-19 07:29:57 by jwe] diff -r 4c3d46b02f99 -r b8a8821962af readline/readline.c --- a/readline/readline.c Tue Sep 19 07:21:00 1995 +0000 +++ b/readline/readline.c Tue Sep 19 07:31:39 1995 +0000 @@ -25,9 +25,9 @@ #include #include #include -#if !defined (NO_SYS_FILE) +#if defined (HAVE_SYS_FILE) # include -#endif /* !NO_SYS_FILE */ +#endif /* HAVE_SYS_FILE */ #include #if defined (HAVE_UNISTD_H) diff -r 4c3d46b02f99 -r b8a8821962af readline/readline.h --- a/readline/readline.h Tue Sep 19 07:21:00 1995 +0000 +++ b/readline/readline.h Tue Sep 19 07:31:39 1995 +0000 @@ -167,6 +167,11 @@ unless they also appear within this list. */ extern char *rl_completer_quote_characters; +/* Character to add after a single completion alternative matches + at the end of line. By default this is a space. + Nothing is added if this is '\0'. */ +extern char rl_completion_append_character; + /* List of characters that are word break characters, but should be left in TEXT when it is passed to the completion function. The shell uses this to help determine what kind of completing to do. */