diff options
author | Ken Raeburn <raeburn@raeburn.org> | 2002-07-19 14:27:16 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@raeburn.org> | 2002-07-19 14:27:16 +0000 |
commit | 3f7e390a954abf8dee64857a0190f8ca4f277998 (patch) | |
tree | 58e528eb32093a2fac2ed2e30c870e195ab6e4bc /src/print.c | |
parent | 101d50c8d92649705174635ad899b2c873d91699 (diff) | |
download | emacs-3f7e390a954abf8dee64857a0190f8ca4f277998.tar.gz |
(temp_output_buffer_setup):
(internal_with_output_to_temp_buffer): Buffer name argument is now
pointer to const.
Diffstat (limited to 'src/print.c')
-rw-r--r-- | src/print.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; { |