aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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;