changeset 1433:b8a8821962af

[project @ 1995-09-19 07:29:57 by jwe]
author jwe
date Tue, 19 Sep 1995 07:31:39 +0000
parents 4c3d46b02f99
children 164051941de6
files readline/readline.c readline/readline.h
diffstat 2 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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 <stdio.h>
 #include <sys/types.h>
 #include <fcntl.h>
-#if !defined (NO_SYS_FILE)
+#if defined (HAVE_SYS_FILE)
 #  include <sys/file.h>
-#endif /* !NO_SYS_FILE */
+#endif /* HAVE_SYS_FILE */
 #include <signal.h>
 
 #if defined (HAVE_UNISTD_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. */