1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-24 22:40:51 -08:00

Fringe cleanup.

Comment fix. Use renamed symbols.
This commit is contained in:
Kim F. Storm 2001-11-16 13:02:02 +00:00
parent afb7aabb3f
commit 228a208564

View file

@ -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. */