diff options
| author | Ken Raeburn | 2002-07-19 14:27:16 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2002-07-19 14:27:16 +0000 |
| commit | 3f7e390a954abf8dee64857a0190f8ca4f277998 (patch) | |
| tree | 58e528eb32093a2fac2ed2e30c870e195ab6e4bc /src | |
| parent | 101d50c8d92649705174635ad899b2c873d91699 (diff) | |
| download | emacs-3f7e390a954abf8dee64857a0190f8ca4f277998.tar.gz emacs-3f7e390a954abf8dee64857a0190f8ca4f277998.zip | |
(temp_output_buffer_setup):
(internal_with_output_to_temp_buffer): Buffer name argument is now
pointer to const.
Diffstat (limited to 'src')
| -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) | |||
| 578 | 578 | ||
| 579 | void | 579 | void |
| 580 | temp_output_buffer_setup (bufname) | 580 | temp_output_buffer_setup (bufname) |
| 581 | char *bufname; | 581 | const char *bufname; |
| 582 | { | 582 | { |
| 583 | int count = SPECPDL_INDEX (); | 583 | int count = SPECPDL_INDEX (); |
| 584 | register struct buffer *old = current_buffer; | 584 | register struct buffer *old = current_buffer; |
| @@ -609,7 +609,7 @@ temp_output_buffer_setup (bufname) | |||
| 609 | 609 | ||
| 610 | Lisp_Object | 610 | Lisp_Object |
| 611 | internal_with_output_to_temp_buffer (bufname, function, args) | 611 | internal_with_output_to_temp_buffer (bufname, function, args) |
| 612 | char *bufname; | 612 | const char *bufname; |
| 613 | Lisp_Object (*function) P_ ((Lisp_Object)); | 613 | Lisp_Object (*function) P_ ((Lisp_Object)); |
| 614 | Lisp_Object args; | 614 | Lisp_Object args; |
| 615 | { | 615 | { |