aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2016-02-22 19:30:01 +0200
committerEli Zaretskii2016-02-22 19:30:01 +0200
commit6bd9d697fd6d81726fa684fa86ef7369a1ef93de (patch)
tree40abfd24aca2afb463c174cb93ea20cfb3687328
parent8c22ac9115a20e84f38a0b6e262756f43ea72f05 (diff)
downloademacs-6bd9d697fd6d81726fa684fa86ef7369a1ef93de.tar.gz
emacs-6bd9d697fd6d81726fa684fa86ef7369a1ef93de.zip
Fix documentation of 'global-disable-point-adjustment'
* src/keyboard.c (syms_of_keyboard) <disable-point-adjustment> <global-disable-point-adjustment>: Doc fixes. (Bug#22771)
-rw-r--r--src/keyboard.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 4edb5aa0f32..31208696032 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -11620,10 +11620,10 @@ It's called with one argument, the help string to display. */);
11620 DEFVAR_LISP ("disable-point-adjustment", Vdisable_point_adjustment, 11620 DEFVAR_LISP ("disable-point-adjustment", Vdisable_point_adjustment,
11621 doc: /* If non-nil, suppress point adjustment after executing a command. 11621 doc: /* If non-nil, suppress point adjustment after executing a command.
11622 11622
11623After a command is executed, if point is moved into a region that has 11623After a command is executed, if point moved into a region that has
11624special properties (e.g. composition, display), we adjust point to 11624special properties (e.g. composition, display), Emacs adjusts point to
11625the boundary of the region. But, when a command sets this variable to 11625the boundary of the region. But when a command binds this variable to
11626non-nil, we suppress the point adjustment. 11626non-nil, this point adjustment is suppressed.
11627 11627
11628This variable is set to nil before reading a command, and is checked 11628This variable is set to nil before reading a command, and is checked
11629just after executing the command. */); 11629just after executing the command. */);
@@ -11631,9 +11631,9 @@ just after executing the command. */);
11631 11631
11632 DEFVAR_LISP ("global-disable-point-adjustment", 11632 DEFVAR_LISP ("global-disable-point-adjustment",
11633 Vglobal_disable_point_adjustment, 11633 Vglobal_disable_point_adjustment,
11634 doc: /* If non-nil, always suppress point adjustment. 11634 doc: /* If non-nil, always suppress point adjustments.
11635 11635
11636The default value is nil, in which case, point adjustment are 11636The default value is nil, in which case point adjustments are
11637suppressed only after special commands that set 11637suppressed only after special commands that set
11638`disable-point-adjustment' (which see) to non-nil. */); 11638`disable-point-adjustment' (which see) to non-nil. */);
11639 Vglobal_disable_point_adjustment = Qnil; 11639 Vglobal_disable_point_adjustment = Qnil;