Mercurial > emacs
changeset 20377:ed6e0d0465c4
(internal_with_output_to_temp_buffer):
Don't declare arg type taken by 2nd arg.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Fri, 28 Nov 1997 14:37:15 +0000 |
parents | 67f1753dc577 |
children | cf1b52f5c34a |
files | src/lisp.h src/print.c |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 */
--- 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;