aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorStefan Kangas2022-01-01 06:51:58 +0100
committerStefan Kangas2022-01-01 06:51:58 +0100
commit78066671c04b09e57cb82ded6b5d29baee7f5f6b (patch)
tree409aff2cd0504c3b5863e201e0d82a40c1a32081 /src/buffer.c
parent48bd406793c60a95bd23b15f3c5f7c9f2f228db2 (diff)
parent67400da412d8939a42ad6b88c9e6a07979a8f46f (diff)
downloademacs-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.c9
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.
6027If non-nil, a bitmap is displayed in the left fringe of a window on 6027If non-nil, a bitmap is displayed in the left fringe of a window
6028window-systems. */); 6028on graphical displays for each screen line that doesn't correspond
6029to 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.
6033If non-nil, the first and last line of the buffer are marked in the fringe 6034If non-nil, the first and last line of the buffer are marked in the fringe
6034of a window on window-systems with angle bitmaps, or if the window can be 6035of a window on graphical displays with angle bitmaps, or if the window can be
6035scrolled, the top and bottom line of the window are marked with up and down 6036scrolled, the top and bottom line of the window are marked with up and down
6036arrow bitmaps. 6037arrow bitmaps.
6037 6038