aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2005-10-07 21:47:49 +0000
committerKim F. Storm2005-10-07 21:47:49 +0000
commit93e023fcee6863f22cebaf51dfe140a187f9eadc (patch)
tree98cd30621a0d0e9aa1a8494ef31b2e60a6700c0c /src
parentf1010549551eb7a4311b3dd31b7f1c965a0dbec9 (diff)
downloademacs-93e023fcee6863f22cebaf51dfe140a187f9eadc.tar.gz
emacs-93e023fcee6863f22cebaf51dfe140a187f9eadc.zip
(redraw_overlapped_rows, redraw_overlapping_rows)
[!HAVE_WINDOW_SYSTEM]: Don't declare them... (update_window) [!HAVE_WINDOW_SYSTEM]: ...and don't call them.
Diffstat (limited to 'src')
-rw-r--r--src/dispnew.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index 43cfd46da39..09a957b6dce 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -3963,6 +3963,7 @@ update_single_window (w, force_p)
3963 } 3963 }
3964} 3964}
3965 3965
3966#ifdef HAVE_WINDOW_SYSTEM
3966 3967
3967/* Redraw lines from the current matrix of window W that are 3968/* Redraw lines from the current matrix of window W that are
3968 overlapped by other rows. YB is bottom-most y-position in W. */ 3969 overlapped by other rows. YB is bottom-most y-position in W. */
@@ -4069,6 +4070,8 @@ redraw_overlapping_rows (w, yb)
4069 } 4070 }
4070} 4071}
4071 4072
4073#endif /* HAVE_WINDOW_SYSTEM */
4074
4072 4075
4073#ifdef GLYPH_DEBUG 4076#ifdef GLYPH_DEBUG
4074 4077
@@ -4229,11 +4232,13 @@ update_window (w, force_p)
4229 /* Fix the appearance of overlapping/overlapped rows. */ 4232 /* Fix the appearance of overlapping/overlapped rows. */
4230 if (!paused_p && !w->pseudo_window_p) 4233 if (!paused_p && !w->pseudo_window_p)
4231 { 4234 {
4235#ifdef HAVE_WINDOW_SYSTEM
4232 if (changed_p && rif->fix_overlapping_area) 4236 if (changed_p && rif->fix_overlapping_area)
4233 { 4237 {
4234 redraw_overlapped_rows (w, yb); 4238 redraw_overlapped_rows (w, yb);
4235 redraw_overlapping_rows (w, yb); 4239 redraw_overlapping_rows (w, yb);
4236 } 4240 }
4241#endif
4237 4242
4238 /* Make cursor visible at cursor position of W. */ 4243 /* Make cursor visible at cursor position of W. */
4239 set_window_cursor_after_update (w); 4244 set_window_cursor_after_update (w);