aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Schwab1997-11-28 14:37:15 +0000
committerAndreas Schwab1997-11-28 14:37:15 +0000
commit3d03cf9fdbaeb9d0f7d7e2a4bac322126c128ed7 (patch)
treefd9eaaac565d1d5ddc5993b37ab76649a3e5cd28 /src
parentd53152829b309f253d255a238e08d9d5c9a06b2f (diff)
downloademacs-3d03cf9fdbaeb9d0f7d7e2a4bac322126c128ed7.tar.gz
emacs-3d03cf9fdbaeb9d0f7d7e2a4bac322126c128ed7.zip
(internal_with_output_to_temp_buffer):
Don't declare arg type taken by 2nd arg.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h2
-rw-r--r--src/print.c2
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));
1766extern void write_string_1 P_ ((char *, int, Lisp_Object)); 1766extern void write_string_1 P_ ((char *, int, Lisp_Object));
1767extern void print_error_message P_ ((Lisp_Object, Lisp_Object)); 1767extern void print_error_message P_ ((Lisp_Object, Lisp_Object));
1768extern Lisp_Object internal_with_output_to_temp_buffer 1768extern Lisp_Object internal_with_output_to_temp_buffer
1769 P_ ((char *, Lisp_Object (*) (Lisp_Object), Lisp_Object)); 1769 P_ ((char *, Lisp_Object (*) (), Lisp_Object));
1770extern void float_to_string P_ ((unsigned char *, double)); 1770extern 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)
582Lisp_Object 582Lisp_Object
583internal_with_output_to_temp_buffer (bufname, function, args) 583internal_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;