diff options
| author | Kim F. Storm | 2001-11-16 13:02:02 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2001-11-16 13:02:02 +0000 |
| commit | 228a208564145fb8d5890a46eafa95f5b7bdc3ac (patch) | |
| tree | 2fdc543409cf3eb641398790c946d9b70b3f1f52 /src | |
| parent | afb7aabb3fdc8b7c4c1b2544faaf363ce28ea771 (diff) | |
| download | emacs-228a208564145fb8d5890a46eafa95f5b7bdc3ac.tar.gz emacs-228a208564145fb8d5890a46eafa95f5b7bdc3ac.zip | |
Fringe cleanup.
Comment fix. Use renamed symbols.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispnew.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index 073fa2e53de..da6bcc33b1e 100644 --- a/src/dispnew.c +++ b/src/dispnew.c | |||
| @@ -5740,12 +5740,12 @@ mode_line_string (w, x, y, mode_line_p, charpos) | |||
| 5740 | 5740 | ||
| 5741 | if (row->mode_line_p && row->enabled_p) | 5741 | if (row->mode_line_p && row->enabled_p) |
| 5742 | { | 5742 | { |
| 5743 | /* The mode lines are displayed over scroll bars and bitmap | 5743 | /* The mode lines are displayed over scroll bars and fringes, |
| 5744 | areas, and X is window-relative. Correct X by the scroll bar | 5744 | and X is window-relative. Correct X by the scroll bar |
| 5745 | and bitmap area width. */ | 5745 | and fringe width. */ |
| 5746 | if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f)) | 5746 | if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f)) |
| 5747 | x += FRAME_SCROLL_BAR_COLS (f) * CANON_X_UNIT (f); | 5747 | x += FRAME_SCROLL_BAR_COLS (f) * CANON_X_UNIT (f); |
| 5748 | x += FRAME_LEFT_FLAGS_AREA_WIDTH (f); | 5748 | x += FRAME_LEFT_FRINGE_WIDTH (f); |
| 5749 | 5749 | ||
| 5750 | /* Find the glyph under X. If we find one with a string object, | 5750 | /* Find the glyph under X. If we find one with a string object, |
| 5751 | it's the one we were looking for. */ | 5751 | it's the one we were looking for. */ |