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
77731919
Commit
77731919
authored
Nov 14, 2012
by
Dmitry Antipov
Browse files
* xdisp.c (echo_area_display, redisplay_internal):
Omit redundant check whether frame_garbaged is set.
parent
8619323f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
8 deletions
+9
-8
src/ChangeLog
src/ChangeLog
+5
-0
src/xdisp.c
src/xdisp.c
+4
-8
No files found.
src/ChangeLog
View file @
77731919
2012-11-14 Dmitry Antipov <dmantipov@yandex.ru>
* xdisp.c (echo_area_display, redisplay_internal):
Omit redundant check whether frame_garbaged is set.
2012-11-14 Paul Eggert <eggert@cs.ucla.edu>
Use faccessat, not access, when checking file permissions (Bug#12632).
...
...
src/xdisp.c
View file @
77731919
...
...
@@ -10816,7 +10816,6 @@ echo_area_display (int update_frame_p)
#endif /* HAVE_WINDOW_SYSTEM */
/* Redraw garbaged frames. */
if (frame_garbaged)
clear_garbaged_frames ();
if (!NILP (echo_area_buffer[0]) || minibuf_level == 0)
...
...
@@ -13104,7 +13103,6 @@ redisplay_internal (void)
}
/* Clear frames marked as garbaged. */
if (frame_garbaged)
clear_garbaged_frames ();
/* Build menubar and tool-bar items. */
...
...
@@ -13189,7 +13187,6 @@ redisplay_internal (void)
/* If window configuration was changed, frames may have been
marked garbaged. Clear them or we will experience
surprises wrt scrolling. */
if (frame_garbaged)
clear_garbaged_frames ();
}
}
...
...
@@ -13213,7 +13210,6 @@ redisplay_internal (void)
/* If window configuration was changed, frames may have been
marked garbaged. Clear them or we will experience
surprises wrt scrolling. */
if (frame_garbaged)
clear_garbaged_frames ();
}
...
...
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