diff options
| author | Jim Blandy | 1993-03-02 08:22:42 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-03-02 08:22:42 +0000 |
| commit | a3c87d4e63e999a3ed18efe60d6b36da3a48a314 (patch) | |
| tree | d50ead7aaf06c70c637c1136cc042b9c95a8ec60 /src/window.c | |
| parent | ab6482702d926eb46472bbdb4de59d4ad8265316 (diff) | |
| download | emacs-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/window.c')
| -rw-r--r-- | src/window.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/window.c b/src/window.c index 82e39545a23..ab81e806aba 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -2038,7 +2038,7 @@ window_internal_height (w) | |||
| 2038 | 2038 | ||
| 2039 | 2039 | ||
| 2040 | /* Return the number of columns in W. | 2040 | /* Return the number of columns in W. |
| 2041 | Don't count columns occupied by scrollbars or the vertical bar | 2041 | Don't count columns occupied by scroll bars or the vertical bar |
| 2042 | separating W from the sibling to its right. */ | 2042 | separating W from the sibling to its right. */ |
| 2043 | int | 2043 | int |
| 2044 | window_internal_width (w) | 2044 | window_internal_width (w) |
| @@ -2056,9 +2056,9 @@ window_internal_width (w) | |||
| 2056 | /* If we are not flush right, then our rightmost columns are | 2056 | /* If we are not flush right, then our rightmost columns are |
| 2057 | occupied by some sort of separator. */ | 2057 | occupied by some sort of separator. */ |
| 2058 | 2058 | ||
| 2059 | /* Scrollbars occupy a few columns. */ | 2059 | /* Scroll bars occupy a few columns. */ |
| 2060 | if (FRAME_HAS_VERTICAL_SCROLLBARS (f)) | 2060 | if (FRAME_HAS_VERTICAL_SCROLL_BARS (f)) |
| 2061 | return width - VERTICAL_SCROLLBAR_WIDTH; | 2061 | return width - VERTICAL_SCROLL_BAR_WIDTH; |
| 2062 | 2062 | ||
| 2063 | /* The column of `|' characters separating side-by-side windows | 2063 | /* The column of `|' characters separating side-by-side windows |
| 2064 | occupies one column only. */ | 2064 | occupies one column only. */ |
| @@ -2899,13 +2899,13 @@ work using this function."); | |||
| 2899 | ((X-POS Y-POS) WINDOW FRAME-PART KEYSEQ).\n\ | 2899 | ((X-POS Y-POS) WINDOW FRAME-PART KEYSEQ).\n\ |
| 2900 | KEYSEQ is a string, the key sequence to be looked up in the mouse maps.\n\ | 2900 | KEYSEQ is a string, the key sequence to be looked up in the mouse maps.\n\ |
| 2901 | WINDOW is the window that the click applies do.\n\ | 2901 | WINDOW is the window that the click applies do.\n\ |
| 2902 | If FRAME-PART is non-nil, the event was on a scrollbar;\n\ | 2902 | If FRAME-PART is non-nil, the event was on a scroll bar;\n\ |
| 2903 | then Y-POS is really the total length of the scrollbar, while X-POS is\n\ | 2903 | then Y-POS is really the total length of the scroll bar, while X-POS is\n\ |
| 2904 | the relative position of the scrollbar's value within that total length.\n\ | 2904 | the relative position of the scroll bar's value within that total length.\n\ |
| 2905 | FRAME-PART is one of the following symbols:\n\ | 2905 | FRAME-PART is one of the following symbols:\n\ |
| 2906 | `vertical-scrollbar', `vertical-slider',\n\ | 2906 | `vertical-scroll-bar', `vertical-slider',\n\ |
| 2907 | `vertical-thumbup', `vertical-thumbdown',\n\ | 2907 | `vertical-thumbup', `vertical-thumbdown',\n\ |
| 2908 | `horizontal-scrollbar', `horizontal-slider',\n\ | 2908 | `horizontal-scroll-bar', `horizontal-slider',\n\ |
| 2909 | `horizontal-thumbleft', `horizontal-thumbright'"); | 2909 | `horizontal-thumbleft', `horizontal-thumbright'"); |
| 2910 | Vmouse_event = Qnil; | 2910 | Vmouse_event = Qnil; |
| 2911 | 2911 | ||