* readline.c (insert_some_chars): Return void.

This commit is contained in:
Stu Grossman 1992-06-14 22:21:18 +00:00
parent bcbf95597c
commit 7c88553a91
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Sun Jun 14 15:19:51 1992 Stu Grossman (grossman at cygnus.com)
* readline.c (insert_some_chars): Return void.
Thu Jun 11 01:27:45 1992 John Gilmore (gnu at cygnus.com)
* readline.c: #undef PC, which Solaris2 defines in sys/types.h,

View File

@ -163,7 +163,7 @@ extern char *tilde_expand ();
static update_line ();
static void output_character_function ();
static delete_chars ();
static insert_some_chars ();
static void insert_some_chars ();
#if defined (VOID_SIGHANDLER)
# define sighandler void
@ -2171,7 +2171,7 @@ delete_chars (count)
}
/* Insert COUNT characters from STRING to the output stream. */
static
static void
insert_some_chars (string, count)
char *string;
int count;