Fix documentation of 'global-disable-point-adjustment'
* src/keyboard.c (syms_of_keyboard) <disable-point-adjustment> <global-disable-point-adjustment>: Doc fixes. (Bug#22771)
This commit is contained in:
parent
8c22ac9115
commit
6bd9d697fd
1 changed files with 6 additions and 6 deletions
|
@ -11620,10 +11620,10 @@ It's called with one argument, the help string to display. */);
|
||||||
DEFVAR_LISP ("disable-point-adjustment", Vdisable_point_adjustment,
|
DEFVAR_LISP ("disable-point-adjustment", Vdisable_point_adjustment,
|
||||||
doc: /* If non-nil, suppress point adjustment after executing a command.
|
doc: /* If non-nil, suppress point adjustment after executing a command.
|
||||||
|
|
||||||
After a command is executed, if point is moved into a region that has
|
After a command is executed, if point moved into a region that has
|
||||||
special properties (e.g. composition, display), we adjust point to
|
special properties (e.g. composition, display), Emacs adjusts point to
|
||||||
the boundary of the region. But, when a command sets this variable to
|
the boundary of the region. But when a command binds this variable to
|
||||||
non-nil, we suppress the point adjustment.
|
non-nil, this point adjustment is suppressed.
|
||||||
|
|
||||||
This variable is set to nil before reading a command, and is checked
|
This variable is set to nil before reading a command, and is checked
|
||||||
just after executing the command. */);
|
just after executing the command. */);
|
||||||
|
@ -11631,9 +11631,9 @@ just after executing the command. */);
|
||||||
|
|
||||||
DEFVAR_LISP ("global-disable-point-adjustment",
|
DEFVAR_LISP ("global-disable-point-adjustment",
|
||||||
Vglobal_disable_point_adjustment,
|
Vglobal_disable_point_adjustment,
|
||||||
doc: /* If non-nil, always suppress point adjustment.
|
doc: /* If non-nil, always suppress point adjustments.
|
||||||
|
|
||||||
The default value is nil, in which case, point adjustment are
|
The default value is nil, in which case point adjustments are
|
||||||
suppressed only after special commands that set
|
suppressed only after special commands that set
|
||||||
`disable-point-adjustment' (which see) to non-nil. */);
|
`disable-point-adjustment' (which see) to non-nil. */);
|
||||||
Vglobal_disable_point_adjustment = Qnil;
|
Vglobal_disable_point_adjustment = Qnil;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue