aboutsummaryrefslogtreecommitdiffstats
path: root/src/indent.c
diff options
context:
space:
mode:
authorJim Blandy1993-03-02 08:22:42 +0000
committerJim Blandy1993-03-02 08:22:42 +0000
commita3c87d4e63e999a3ed18efe60d6b36da3a48a314 (patch)
treed50ead7aaf06c70c637c1136cc042b9c95a8ec60 /src/indent.c
parentab6482702d926eb46472bbdb4de59d4ad8265316 (diff)
downloademacs-a3c87d4e63e999a3ed18efe60d6b36da3a48a314.tar.gz
emacs-a3c87d4e63e999a3ed18efe60d6b36da3a48a314.zip
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;
396 When displaying in window w, a typical formula for WIDTH is: 396 When displaying in window w, a typical formula for WIDTH is:
397 397
398 window_width - 1 398 window_width - 1
399 - (has_vertical_scrollbars 399 - (has_vertical_scroll_bars
400 ? VERTICAL_SCROLLBAR_WIDTH 400 ? VERTICAL_SCROLL_BAR_WIDTH
401 : (window_width + window_left != frame_width)) 401 : (window_width + window_left != frame_width))
402 402
403 where 403 where
404 window_width is XFASTINT (w->width), 404 window_width is XFASTINT (w->width),
405 window_left is XFASTINT (w->left), 405 window_left is XFASTINT (w->left),
406 has_vertical_scrollbars is 406 has_vertical_scroll_bars is
407 FRAME_HAS_VERTICAL_SCROLLBARS (XFRAME (WINDOW_FRAME (window))) 407 FRAME_HAS_VERTICAL_SCROLL_BARS (XFRAME (WINDOW_FRAME (window)))
408 and frame_width = FRAME_WIDTH (XFRAME (window->frame)) 408 and frame_width = FRAME_WIDTH (XFRAME (window->frame))
409 409
410 Or, 410 Or,
@@ -412,7 +412,7 @@ struct position val_compute_motion;
412 412
413 The `-1' accounts for the continuation-line backslashes; the rest 413 The `-1' accounts for the continuation-line backslashes; the rest
414 accounts for window borders if the window is split vertically, and 414 accounts for window borders if the window is split vertically, and
415 the scrollbars if the frame supports them. */ 415 the scroll bars if the frame supports them. */
416 416
417struct position * 417struct position *
418compute_motion (from, fromvpos, fromhpos, to, tovpos, tohpos, width, hscroll, tab_offset) 418compute_motion (from, fromvpos, fromhpos, to, tovpos, tohpos, width, hscroll, tab_offset)