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
259cf6bc
Commit
259cf6bc
authored
Oct 30, 2001
by
Gerd Moellmann
Browse files
(x_after_update_window_line): Don't run the code
clearing in borders for rows whose visible height is 0.
parent
3f99f948
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
src/ChangeLog
src/ChangeLog
+3
-0
src/xterm.c
src/xterm.c
+4
-3
No files found.
src/ChangeLog
View file @
259cf6bc
2001-10-30 Gerd Moellmann <gerd@gnu.org>
* xterm.c (x_after_update_window_line): Don't run the code
clearing in borders for rows whose visible height is 0.
* xdisp.c (clear_garbaged_frames): Redraw the frame only if its
resized_p flag is set. If not set, use the much less flickering
method previously used.
...
...
src/xterm.c
View file @
259cf6bc
...
...
@@ -770,7 +770,7 @@ x_after_update_window_line (desired_row)
{
struct window *w = updated_window;
struct frame *f;
int width;
int width
, height
;
xassert (w);
...
...
@@ -791,9 +791,10 @@ x_after_update_window_line (desired_row)
&& desired_row->full_width_p
&& (f = XFRAME (w->frame),
width = FRAME_INTERNAL_BORDER_WIDTH (f),
width != 0))
width != 0)
&& (height = desired_row->visible_height,
height > 0))
{
int height = desired_row->visible_height;
int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
/* Internal border is drawn below the tool bar. */
...
...
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