aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2001-11-16 13:02:02 +0000
committerKim F. Storm <[email protected]>2001-11-16 13:02:02 +0000
commit228a208564145fb8d5890a46eafa95f5b7bdc3ac (patch)
tree2fdc543409cf3eb641398790c946d9b70b3f1f52
parentafb7aabb3fdc8b7c4c1b2544faaf363ce28ea771 (diff)
Fringe cleanup.
Comment fix. Use renamed symbols.
-rw-r--r--src/dispnew.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index 073fa2e53d..da6bcc33b1 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -5740,12 +5740,12 @@ mode_line_string (w, x, y, mode_line_p, charpos)
if (row->mode_line_p && row->enabled_p)
{
- /* The mode lines are displayed over scroll bars and bitmap
- areas, and X is window-relative. Correct X by the scroll bar
- and bitmap area width. */
+ /* The mode lines are displayed over scroll bars and fringes,
+ and X is window-relative. Correct X by the scroll bar
+ and fringe width. */
if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
x += FRAME_SCROLL_BAR_COLS (f) * CANON_X_UNIT (f);
- x += FRAME_LEFT_FLAGS_AREA_WIDTH (f);
+ x += FRAME_LEFT_FRINGE_WIDTH (f);
/* Find the glyph under X. If we find one with a string object,
it's the one we were looking for. */