summaryrefslogtreecommitdiff
path: root/src/print.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-10-04 12:20:04 +0000
committerKarl Heuer <kwzh@gnu.org>1994-10-04 12:20:04 +0000
commit523f2dc9919299145a3f16bf2831942c24307deb (patch)
treefde46e571893577d1dd28e88689dc46547de708b /src/print.c
parent8fbe81789dc388fd73f68732b4acbbcd6d4c8d67 (diff)
downloademacs-523f2dc9919299145a3f16bf2831942c24307deb.tar.gz
(temp_output_buffer_setup): Use new accessor macros instead of calling XSET
directly.
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index ea9e00f9ccd..01b8e1dbdc9 100644
--- a/src/print.c
+++ b/src/print.c
@@ -385,7 +385,7 @@ temp_output_buffer_setup (bufname)
current_buffer->read_only = Qnil;
Ferase_buffer ();
- XSET (buf, Lisp_Buffer, current_buffer);
+ XSETBUFFER (buf, current_buffer);
specbind (Qstandard_output, buf);
set_buffer_internal (old);