aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-10-04 12:20:04 +0000
committerKarl Heuer1994-10-04 12:20:04 +0000
commit633307b545c9003d73398f7ac5d95d3fd6b6f622 (patch)
treeac40061273b039cff955d4389c863f0944f818b1 /src
parent0e11d8694e891789a24de4f9dd0cbd8f88e2f4b2 (diff)
downloademacs-633307b545c9003d73398f7ac5d95d3fd6b6f622.tar.gz
emacs-633307b545c9003d73398f7ac5d95d3fd6b6f622.zip
(temp_output_buffer_setup): Use new accessor macros instead of calling XSET
directly.
Diffstat (limited to 'src')
-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)
385 current_buffer->read_only = Qnil; 385 current_buffer->read_only = Qnil;
386 Ferase_buffer (); 386 Ferase_buffer ();
387 387
388 XSET (buf, Lisp_Buffer, current_buffer); 388 XSETBUFFER (buf, current_buffer);
389 specbind (Qstandard_output, buf); 389 specbind (Qstandard_output, buf);
390 390
391 set_buffer_internal (old); 391 set_buffer_internal (old);