Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d57b83b3
Commit
d57b83b3
authored
Jan 16, 2001
by
Gerd Moellmann
Browse files
(Fset_buffer_modified_p): Set buffer's
prevent_redisplay_optimizations_p flag.
parent
25c99c6d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
src/ChangeLog
src/ChangeLog
+3
-0
src/buffer.c
src/buffer.c
+4
-1
No files found.
src/ChangeLog
View file @
d57b83b3
2001-01-16 Gerd Moellmann <gerd@gnu.org>
* buffer.c (Fset_buffer_modified_p): Set buffer's
prevent_redisplay_optimizations_p flag.
* dispnew.c, callproc.c, fns.c, keyboard.c, process.c, sunfns.c,
* sysdep.c, vmsproc.c, xselect.c: Call
redisplay_preserve_echo_area with additional arg.
...
...
src/buffer.c
View file @
d57b83b3
...
...
@@ -894,7 +894,10 @@ A non-nil FLAG means mark the buffer modified.")
XSETBUFFER
(
buffer
,
current_buffer
);
window
=
Fget_buffer_window
(
buffer
,
Qt
);
if
(
WINDOWP
(
window
))
update_mode_lines
++
;
{
++
update_mode_lines
;
current_buffer
->
prevent_redisplay_optimizations_p
=
1
;
}
return
flag
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment