]> git.eshelyaron.com Git - emacs.git/commitdiff
(internal_with_output_to_temp_buffer):
authorAndreas Schwab <schwab@suse.de>
Fri, 28 Nov 1997 14:37:15 +0000 (14:37 +0000)
committerAndreas Schwab <schwab@suse.de>
Fri, 28 Nov 1997 14:37:15 +0000 (14:37 +0000)
Don't declare arg type taken by 2nd arg.

src/lisp.h
src/print.c

index 97c7efdc3cd6c4e8b0fd92921152b70864fe2072..6a06d2be82d5462d9c1566b04fff8bd10e5f9981 100644 (file)
@@ -1766,7 +1766,7 @@ extern void write_string P_ ((char *, int));
 extern void write_string_1 P_ ((char *, int, Lisp_Object));
 extern void print_error_message P_ ((Lisp_Object, Lisp_Object));
 extern Lisp_Object internal_with_output_to_temp_buffer
-       P_ ((char *, Lisp_Object (*) (Lisp_Object), Lisp_Object));
+       P_ ((char *, Lisp_Object (*) (), Lisp_Object));
 extern void float_to_string P_ ((unsigned char *, double));
 
 /* Defined in doprnt.c */
index 48583dabd06cc3047da458b5293bf447a6243382..ecfec6b3a8b024035d2fe67c50471e9170b267bc 100644 (file)
@@ -582,7 +582,7 @@ temp_output_buffer_setup (bufname)
 Lisp_Object
 internal_with_output_to_temp_buffer (bufname, function, args)
      char *bufname;
-     Lisp_Object (*function) P_ ((Lisp_Object));
+     Lisp_Object (*function) ();
      Lisp_Object args;
 {
   int count = specpdl_ptr - specpdl;