diff options
| author | Stefan Kangas | 2022-01-01 06:51:58 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2022-01-01 06:51:58 +0100 |
| commit | 78066671c04b09e57cb82ded6b5d29baee7f5f6b (patch) | |
| tree | 409aff2cd0504c3b5863e201e0d82a40c1a32081 /src/buffer.c | |
| parent | 48bd406793c60a95bd23b15f3c5f7c9f2f228db2 (diff) | |
| parent | 67400da412d8939a42ad6b88c9e6a07979a8f46f (diff) | |
| download | emacs-78066671c04b09e57cb82ded6b5d29baee7f5f6b.tar.gz emacs-78066671c04b09e57cb82ded6b5d29baee7f5f6b.zip | |
Merge from origin/emacs-28
67400da412 Improve doc strings of fringe indicator variables
a6adfe21e4 * lisp/tab-line.el (tab-line--get-tab-property): New funct...
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/buffer.c b/src/buffer.c index a2fd0a83bce..1db7b4033c1 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -6023,15 +6023,16 @@ specifies. */); | |||
| 6023 | 6023 | ||
| 6024 | DEFVAR_PER_BUFFER ("indicate-empty-lines", | 6024 | DEFVAR_PER_BUFFER ("indicate-empty-lines", |
| 6025 | &BVAR (current_buffer, indicate_empty_lines), Qnil, | 6025 | &BVAR (current_buffer, indicate_empty_lines), Qnil, |
| 6026 | doc: /* Visually indicate empty lines after the buffer end. | 6026 | doc: /* Visually indicate unused ("empty") screen lines after the buffer end. |
| 6027 | If non-nil, a bitmap is displayed in the left fringe of a window on | 6027 | If non-nil, a bitmap is displayed in the left fringe of a window |
| 6028 | window-systems. */); | 6028 | on graphical displays for each screen line that doesn't correspond |
| 6029 | to any buffer text. */); | ||
| 6029 | 6030 | ||
| 6030 | DEFVAR_PER_BUFFER ("indicate-buffer-boundaries", | 6031 | DEFVAR_PER_BUFFER ("indicate-buffer-boundaries", |
| 6031 | &BVAR (current_buffer, indicate_buffer_boundaries), Qnil, | 6032 | &BVAR (current_buffer, indicate_buffer_boundaries), Qnil, |
| 6032 | doc: /* Visually indicate buffer boundaries and scrolling. | 6033 | doc: /* Visually indicate buffer boundaries and scrolling. |
| 6033 | If non-nil, the first and last line of the buffer are marked in the fringe | 6034 | If non-nil, the first and last line of the buffer are marked in the fringe |
| 6034 | of a window on window-systems with angle bitmaps, or if the window can be | 6035 | of a window on graphical displays with angle bitmaps, or if the window can be |
| 6035 | scrolled, the top and bottom line of the window are marked with up and down | 6036 | scrolled, the top and bottom line of the window are marked with up and down |
| 6036 | arrow bitmaps. | 6037 | arrow bitmaps. |
| 6037 | 6038 | ||