aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-01-02 06:30:49 +0000
committerRichard M. Stallman1995-01-02 06:30:49 +0000
commitc6367666aef7459ec683d0f49fd063a615f8f79c (patch)
tree2e306d7de892d82de66c6ba826661bcb3fc9a60e /src
parent908b0ae5e0f13828b9be8c6874e61a5af184a513 (diff)
downloademacs-c6367666aef7459ec683d0f49fd063a615f8f79c.tar.gz
emacs-c6367666aef7459ec683d0f49fd063a615f8f79c.zip
(temp_output_buffer_show): Use BUF_SAVE_MODIFF.
Diffstat (limited to 'src')
-rw-r--r--src/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c
index 201e5ac51ca..2014e043bae 100644
--- a/src/window.c
+++ b/src/window.c
@@ -2012,7 +2012,7 @@ temp_output_buffer_show (buf)
2012 register struct window *w; 2012 register struct window *w;
2013 2013
2014 Fset_buffer (buf); 2014 Fset_buffer (buf);
2015 XBUFFER (buf)->save_modified = MODIFF; 2015 BUF_SAVE_MODIFF (XBUFFER (buf)) = MODIFF;
2016 BEGV = BEG; 2016 BEGV = BEG;
2017 ZV = Z; 2017 ZV = Z;
2018 SET_PT (BEG); 2018 SET_PT (BEG);