aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c
index fec30d4f0e9..3d85d784f1c 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5875,12 +5875,15 @@ cursor's appearance is instead controlled by the variable
5875`cursor-in-non-selected-windows'. */); 5875`cursor-in-non-selected-windows'. */);
5876 5876
5877 DEFVAR_PER_BUFFER ("line-spacing", 5877 DEFVAR_PER_BUFFER ("line-spacing",
5878 &BVAR (current_buffer, extra_line_spacing), Qnumberp, 5878 &BVAR (current_buffer, extra_line_spacing), Qnil,
5879 doc: /* Additional space to put between lines when displaying a buffer. 5879 doc: /* Additional space to put between lines when displaying a buffer.
5880The space is measured in pixels, and put below lines on graphic displays, 5880The space is measured in pixels, and put below lines on graphic displays,
5881see `display-graphic-p'. 5881see `display-graphic-p'.
5882If value is a floating point number, it specifies the spacing relative 5882If value is a floating point number, it specifies the spacing relative
5883to the default frame line height. A value of nil means add no extra space. */); 5883to the default frame line height.
5884If value is a cons cell containing a pair of floats or integers,
5885it is interpreted as space above and below the line, respectively.
5886A value of nil means add no extra space. */);
5884 5887
5885 DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows", 5888 DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows",
5886 &BVAR (current_buffer, cursor_in_non_selected_windows), Qnil, 5889 &BVAR (current_buffer, cursor_in_non_selected_windows), Qnil,