diff src/indent.c @ 1994:73ce9dd21093

Use the term `scroll bar', instead of `scrollbar'. * alloc.c, frame.c, frame.h, indent.c, keyboard.c, keyboard.h, lisp.h, term.c, termhooks.h, window.c, window.h, xdisp.c, xfns.c, xterm.c, xterm.h: Terminology changed.
author Jim Blandy <jimb@redhat.com>
date Tue, 02 Mar 1993 08:22:42 +0000
parents 4edfaa19c7a7
children ffa43acb7de7
line wrap: on
line diff
--- a/src/indent.c	Tue Mar 02 08:21:49 1993 +0000
+++ b/src/indent.c	Tue Mar 02 08:22:42 1993 +0000
@@ -396,15 +396,15 @@
    When displaying in window w, a typical formula for WIDTH is:
 
 	window_width - 1
-	 - (has_vertical_scrollbars
-	    ? VERTICAL_SCROLLBAR_WIDTH
+	 - (has_vertical_scroll_bars
+	    ? VERTICAL_SCROLL_BAR_WIDTH
 	    : (window_width + window_left != frame_width))
 
 	where
 	  window_width is XFASTINT (w->width),
 	  window_left is XFASTINT (w->left),
-	  has_vertical_scrollbars is
-	    FRAME_HAS_VERTICAL_SCROLLBARS (XFRAME (WINDOW_FRAME (window)))
+	  has_vertical_scroll_bars is
+	    FRAME_HAS_VERTICAL_SCROLL_BARS (XFRAME (WINDOW_FRAME (window)))
 	  and frame_width = FRAME_WIDTH (XFRAME (window->frame))
 
 	Or,
@@ -412,7 +412,7 @@
 
    The `-1' accounts for the continuation-line backslashes; the rest
    accounts for window borders if the window is split vertically, and
-   the scrollbars if the frame supports them.  */
+   the scroll bars if the frame supports them.  */
 
 struct position *
 compute_motion (from, fromvpos, fromhpos, to, tovpos, tohpos, width, hscroll, tab_offset)