diff options
| author | Eli Zaretskii | 2021-12-31 21:58:42 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2021-12-31 21:58:42 +0200 |
| commit | 67400da412d8939a42ad6b88c9e6a07979a8f46f (patch) | |
| tree | f47a883f287f9bc036e34b961062ec29b10a180c /src/buffer.c | |
| parent | a6adfe21e4f5de1e0fe342daf4b7cfd317941948 (diff) | |
| download | emacs-67400da412d8939a42ad6b88c9e6a07979a8f46f.tar.gz emacs-67400da412d8939a42ad6b88c9e6a07979a8f46f.zip | |
Improve doc strings of fringe indicator variables
* src/buffer.c (syms_of_buffer): Fix doc strings of
'indicate-empty-lines' and 'indicate-buffer-boundaries'.
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 eca2843e2bc..32982976d2f 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -6018,15 +6018,16 @@ specifies. */); | |||
| 6018 | 6018 | ||
| 6019 | DEFVAR_PER_BUFFER ("indicate-empty-lines", | 6019 | DEFVAR_PER_BUFFER ("indicate-empty-lines", |
| 6020 | &BVAR (current_buffer, indicate_empty_lines), Qnil, | 6020 | &BVAR (current_buffer, indicate_empty_lines), Qnil, |
| 6021 | doc: /* Visually indicate empty lines after the buffer end. | 6021 | doc: /* Visually indicate unused ("empty") screen lines after the buffer end. |
| 6022 | If non-nil, a bitmap is displayed in the left fringe of a window on | 6022 | If non-nil, a bitmap is displayed in the left fringe of a window |
| 6023 | window-systems. */); | 6023 | on graphical displays for each screen line that doesn't correspond |
| 6024 | to any buffer text. */); | ||
| 6024 | 6025 | ||
| 6025 | DEFVAR_PER_BUFFER ("indicate-buffer-boundaries", | 6026 | DEFVAR_PER_BUFFER ("indicate-buffer-boundaries", |
| 6026 | &BVAR (current_buffer, indicate_buffer_boundaries), Qnil, | 6027 | &BVAR (current_buffer, indicate_buffer_boundaries), Qnil, |
| 6027 | doc: /* Visually indicate buffer boundaries and scrolling. | 6028 | doc: /* Visually indicate buffer boundaries and scrolling. |
| 6028 | If non-nil, the first and last line of the buffer are marked in the fringe | 6029 | If non-nil, the first and last line of the buffer are marked in the fringe |
| 6029 | of a window on window-systems with angle bitmaps, or if the window can be | 6030 | of a window on graphical displays with angle bitmaps, or if the window can be |
| 6030 | scrolled, the top and bottom line of the window are marked with up and down | 6031 | scrolled, the top and bottom line of the window are marked with up and down |
| 6031 | arrow bitmaps. | 6032 | arrow bitmaps. |
| 6032 | 6033 | ||