summaryrefslogtreecommitdiff
path: root/src/indent.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-03-02 08:22:42 +0000
committerJim Blandy <jimb@redhat.com>1993-03-02 08:22:42 +0000
commitc36dc1ed1047ca3f4b3ae689e5b3c4e1bfa3219c (patch)
tree8ad3c02b8d411743fb9f4f838b13e536f4a186c2 /src/indent.c
parentf33a92459e6b2aa9d599b575cb8a3f62b099f3aa (diff)
downloademacs-c36dc1ed1047ca3f4b3ae689e5b3c4e1bfa3219c.tar.gz
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.
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/indent.c b/src/indent.c
index bcb3fe6169a..f991c56ef25 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -396,15 +396,15 @@ struct position val_compute_motion;
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 @@ struct position val_compute_motion;
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)