aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-09-28 00:57:37 +0000
committerKarl Heuer1994-09-28 00:57:37 +0000
commitbf92a755fa7f3dd4f4cc0e890454af6eb1a810fc (patch)
treeb9718c18ee74e56a3a35e4abc4312f0d4fb6e772 /src
parentae68312980506e0d2deafad6005845c12debd97c (diff)
downloademacs-bf92a755fa7f3dd4f4cc0e890454af6eb1a810fc.tar.gz
emacs-bf92a755fa7f3dd4f4cc0e890454af6eb1a810fc.zip
(scroll_bar_pixel_width, scroll_bar_cols): Update comment.
Diffstat (limited to 'src')
-rw-r--r--src/frame.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/frame.h b/src/frame.h
index 53c0401d43b..f714fc063ce 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -241,7 +241,10 @@ struct frame
241 /* Number of elements in the vector that have meaningful data. */ 241 /* Number of elements in the vector that have meaningful data. */
242 int menu_bar_items_used; 242 int menu_bar_items_used;
243 243
244 /* Width of the scroll bar, in pixels and in characters. */ 244 /* Width of the scroll bar, in pixels and in characters.
245 scroll_bar_cols tracks scroll_bar_pixel_width if the latter is positive;
246 a zero value in scroll_bar_pixel_width means to compute the actual width
247 on the fly, using scroll_bar_cols and the current font width. */
245 int scroll_bar_pixel_width; 248 int scroll_bar_pixel_width;
246 int scroll_bar_cols; 249 int scroll_bar_cols;
247}; 250};