From: Ken Raeburn Date: Fri, 19 Jul 2002 14:27:16 +0000 (+0000) Subject: (temp_output_buffer_setup): X-Git-Tag: ttn-vms-21-2-B4~13973 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3f7e390a954abf8dee64857a0190f8ca4f277998;p=emacs.git (temp_output_buffer_setup): (internal_with_output_to_temp_buffer): Buffer name argument is now pointer to const. --- diff --git a/src/print.c b/src/print.c index dbbeec97b4e..01f42ab0460 100644 --- a/src/print.c +++ b/src/print.c @@ -578,7 +578,7 @@ write_string_1 (data, size, printcharfun) void temp_output_buffer_setup (bufname) - char *bufname; + const char *bufname; { int count = SPECPDL_INDEX (); register struct buffer *old = current_buffer; @@ -609,7 +609,7 @@ temp_output_buffer_setup (bufname) Lisp_Object internal_with_output_to_temp_buffer (bufname, function, args) - char *bufname; + const char *bufname; Lisp_Object (*function) P_ ((Lisp_Object)); Lisp_Object args; {