diff options
| author | Andreas Schwab | 1997-11-28 14:37:15 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1997-11-28 14:37:15 +0000 |
| commit | 3d03cf9fdbaeb9d0f7d7e2a4bac322126c128ed7 (patch) | |
| tree | fd9eaaac565d1d5ddc5993b37ab76649a3e5cd28 | |
| parent | d53152829b309f253d255a238e08d9d5c9a06b2f (diff) | |
| download | emacs-3d03cf9fdbaeb9d0f7d7e2a4bac322126c128ed7.tar.gz emacs-3d03cf9fdbaeb9d0f7d7e2a4bac322126c128ed7.zip | |
(internal_with_output_to_temp_buffer):
Don't declare arg type taken by 2nd arg.
| -rw-r--r-- | src/lisp.h | 2 | ||||
| -rw-r--r-- | src/print.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h index 97c7efdc3cd..6a06d2be82d 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1766,7 +1766,7 @@ extern void write_string P_ ((char *, int)); | |||
| 1766 | extern void write_string_1 P_ ((char *, int, Lisp_Object)); | 1766 | extern void write_string_1 P_ ((char *, int, Lisp_Object)); |
| 1767 | extern void print_error_message P_ ((Lisp_Object, Lisp_Object)); | 1767 | extern void print_error_message P_ ((Lisp_Object, Lisp_Object)); |
| 1768 | extern Lisp_Object internal_with_output_to_temp_buffer | 1768 | extern Lisp_Object internal_with_output_to_temp_buffer |
| 1769 | P_ ((char *, Lisp_Object (*) (Lisp_Object), Lisp_Object)); | 1769 | P_ ((char *, Lisp_Object (*) (), Lisp_Object)); |
| 1770 | extern void float_to_string P_ ((unsigned char *, double)); | 1770 | extern void float_to_string P_ ((unsigned char *, double)); |
| 1771 | 1771 | ||
| 1772 | /* Defined in doprnt.c */ | 1772 | /* Defined in doprnt.c */ |
diff --git a/src/print.c b/src/print.c index 48583dabd06..ecfec6b3a8b 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -582,7 +582,7 @@ temp_output_buffer_setup (bufname) | |||
| 582 | Lisp_Object | 582 | Lisp_Object |
| 583 | internal_with_output_to_temp_buffer (bufname, function, args) | 583 | internal_with_output_to_temp_buffer (bufname, function, args) |
| 584 | char *bufname; | 584 | char *bufname; |
| 585 | Lisp_Object (*function) P_ ((Lisp_Object)); | 585 | Lisp_Object (*function) (); |
| 586 | Lisp_Object args; | 586 | Lisp_Object args; |
| 587 | { | 587 | { |
| 588 | int count = specpdl_ptr - specpdl; | 588 | int count = specpdl_ptr - specpdl; |