* 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 aaeb934..ea44386 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 696abf6..db22c7f 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;