# HG changeset patch # User Andreas Schwab # Date 880727835 0 # Node ID ed6e0d0465c49c14aba165e6e5623cf28530b0f1 # Parent 67f1753dc57749c3ca79600384fdb4b0ac83566a (internal_with_output_to_temp_buffer): Don't declare arg type taken by 2nd arg. diff -r 67f1753dc577 -r ed6e0d0465c4 src/lisp.h --- a/src/lisp.h Fri Nov 28 14:34:52 1997 +0000 +++ b/src/lisp.h Fri Nov 28 14:37:15 1997 +0000 @@ -1766,7 +1766,7 @@ 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 */ diff -r 67f1753dc577 -r ed6e0d0465c4 src/print.c --- a/src/print.c Fri Nov 28 14:34:52 1997 +0000 +++ b/src/print.c Fri Nov 28 14:37:15 1997 +0000 @@ -582,7 +582,7 @@ 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;