* readline.c (insert_some_chars): Return void.
authorStu Grossman <grossman@cygnus>
Sun, 14 Jun 1992 22:21:18 +0000 (22:21 +0000)
committerStu Grossman <grossman@cygnus>
Sun, 14 Jun 1992 22:21:18 +0000 (22:21 +0000)
readline/ChangeLog
readline/readline.c

index aaeb934ce916df2825f10449cbc75f340305e127..ea443863d0bd23a77ab6e4177f48878d185f730c 100644 (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,
index 696abf611ec5271aa6c5cd65c80819aba5de4afe..db22c7fd3379a4cdc36366bdb3053e425ad5598f 100644 (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;