mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-26 08:10:47 -07:00
(syms_of_buffer) <cursor-in-non-selected-windows, line-spacing, left-margin,
default-scroll-up-aggressively, default-scroll-down-aggressively>: Doc fixes.
This commit is contained in:
parent
f368450536
commit
fc96125678
2 changed files with 11 additions and 5 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2006-12-11 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* buffer.c (syms_of_buffer) <cursor-in-non-selected-windows>:
|
||||
<default-scroll-up-aggressively, default-scroll-down-aggressively>:
|
||||
<line-spacing, left-margin>: Doc fixes.
|
||||
|
||||
2006-12-10 Kim F. Storm <storm@cua.dk>
|
||||
|
||||
* xdisp.c (show_mouse_face): Never use text cursor in tool-bar.
|
||||
|
|
|
|||
10
src/buffer.c
10
src/buffer.c
|
|
@ -5431,13 +5431,13 @@ This is the same as (default-value 'fringe-cursor-alist'). */);
|
|||
&buffer_defaults.scroll_up_aggressively,
|
||||
doc: /* Default value of `scroll-up-aggressively'.
|
||||
This value applies in buffers that don't have their own local values.
|
||||
This variable is an alias for (default-value 'scroll-up-aggressively). */);
|
||||
This is the same as (default-value 'scroll-up-aggressively). */);
|
||||
|
||||
DEFVAR_LISP_NOPRO ("default-scroll-down-aggressively",
|
||||
&buffer_defaults.scroll_down_aggressively,
|
||||
doc: /* Default value of `scroll-down-aggressively'.
|
||||
This value applies in buffers that don't have their own local values.
|
||||
This variable is an alias for (default-value 'scroll-down-aggressively). */);
|
||||
This is the same as (default-value 'scroll-down-aggressively). */);
|
||||
|
||||
DEFVAR_PER_BUFFER ("header-line-format",
|
||||
¤t_buffer->header_line_format,
|
||||
|
|
@ -5531,7 +5531,7 @@ Interactively, you can set the buffer local value using \\[set-fill-column]. */
|
|||
|
||||
DEFVAR_PER_BUFFER ("left-margin", ¤t_buffer->left_margin,
|
||||
make_number (Lisp_Int),
|
||||
doc: /* *Column for the default indent-line-function to indent to.
|
||||
doc: /* *Column for the default `indent-line-function' to indent to.
|
||||
Linefeed indents to this column in Fundamental mode. */);
|
||||
|
||||
DEFVAR_PER_BUFFER ("tab-width", ¤t_buffer->tab_width,
|
||||
|
|
@ -6036,12 +6036,12 @@ this variable has no effect; the cursor appears as a hollow box. */);
|
|||
doc: /* Additional space to put between lines when displaying a buffer.
|
||||
The space is measured in pixels, and put below lines on window systems.
|
||||
If value is a floating point number, it specifies the spacing relative
|
||||
to the default frame line height. nil means add no extra space. */);
|
||||
to the default frame line height. A value of nil means add no extra space. */);
|
||||
|
||||
DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows",
|
||||
¤t_buffer->cursor_in_non_selected_windows, Qnil,
|
||||
doc: /* *Cursor type to display in non-selected windows.
|
||||
t means to use hollow box cursor. See `cursor-type' for other values. */);
|
||||
The value t means to use hollow box cursor. See `cursor-type' for other values. */);
|
||||
|
||||
DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions,
|
||||
doc: /* List of functions called with no args to query before killing a buffer. */);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue