Mercurial > emacs
changeset 46553:61742ffed0bb
(temp_output_buffer_setup):
(internal_with_output_to_temp_buffer): Buffer name argument is now
pointer to const.
author | Ken Raeburn <raeburn@raeburn.org> |
---|---|
date | Fri, 19 Jul 2002 14:27:16 +0000 |
parents | cb055b77d3c6 |
children | fb13fafbd279 |
files | src/print.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/print.c Fri Jul 19 14:27:13 2002 +0000 +++ b/src/print.c Fri Jul 19 14:27:16 2002 +0000 @@ -578,7 +578,7 @@ 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 @@ 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; {