aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1994-09-20 05:12:09 +0000
committerKarl Heuer1994-09-20 05:12:09 +0000
commit5802e919a9ae6e84a7782dfedcd72aeb8a8adf39 (patch)
treeb54a45e0f6e79f5ccb8a146532c259e9a6269d63
parent4701395c1a92773cf4444da714a1f64e6a9ee723 (diff)
downloademacs-5802e919a9ae6e84a7782dfedcd72aeb8a8adf39.tar.gz
emacs-5802e919a9ae6e84a7782dfedcd72aeb8a8adf39.zip
(display_string): Change VERTICAL_SCROLL_BAR_WIDTH to FRAME_SCROLL_BAR_COLS.
-rw-r--r--src/xdisp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 1ce0c58ae0d..fedc9628e89 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -3382,7 +3382,7 @@ display_string (w, vpos, string, length, hpos, truncate,
3382 { 3382 {
3383 int i; 3383 int i;
3384 3384
3385 for (i = 0; i < VERTICAL_SCROLL_BAR_WIDTH; i++) 3385 for (i = 0; i < FRAME_SCROLL_BAR_COLS (f); i++)
3386 *end-- = ' '; 3386 *end-- = ' ';
3387 } 3387 }
3388 else 3388 else