aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Wiegley2016-03-03 23:52:26 -0800
committerJohn Wiegley2016-03-03 23:52:26 -0800
commit68ed6bfb6599104e5f1635a862a373735d818722 (patch)
tree2488b3f959d3dbff87745fb265cd564445616b2a /src
parenteced64b2f76d1f85fb6fd54c67deadf1978cb344 (diff)
parentbd58c136d6ef33a24423720b5cf3c4e8c03fd4a9 (diff)
downloademacs-68ed6bfb6599104e5f1635a862a373735d818722.tar.gz
emacs-68ed6bfb6599104e5f1635a862a373735d818722.zip
Merge from origin/emacs-25
bd58c13 Improve documentation of focus-related hooks 00a4720 Further improve doc string of 'disable-point-adjustment' c582def Further adaptions in file-notify-tests.el for w32notify a1585e1 Don't bug out on localised dates in gnus-icalendar
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 4d107277634..6535e04d826 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -11624,8 +11624,8 @@ It's called with one argument, the help string to display. */);
11624 11624
11625After a command is executed, if point moved into a region that has 11625After a command is executed, if point moved into a region that has
11626special properties (e.g. composition, display), Emacs adjusts point to 11626special properties (e.g. composition, display), Emacs adjusts point to
11627the boundary of the region. But when a command binds this variable to 11627the boundary of the region. But when a command leaves this variable at
11628non-nil, this point adjustment is suppressed. 11628a non-nil value (e.g., with a setq), this point adjustment is suppressed.
11629 11629
11630This variable is set to nil before reading a command, and is checked 11630This variable is set to nil before reading a command, and is checked
11631just after executing the command. */); 11631just after executing the command. */);
@@ -11636,8 +11636,8 @@ just after executing the command. */);
11636 doc: /* If non-nil, always suppress point adjustments. 11636 doc: /* If non-nil, always suppress point adjustments.
11637 11637
11638The default value is nil, in which case point adjustments are 11638The default value is nil, in which case point adjustments are
11639suppressed only after special commands that set 11639suppressed only after special commands that leave
11640`disable-point-adjustment' (which see) to non-nil. */); 11640`disable-point-adjustment' (which see) at a non-nil value. */);
11641 Vglobal_disable_point_adjustment = Qnil; 11641 Vglobal_disable_point_adjustment = Qnil;
11642 11642
11643 DEFVAR_LISP ("minibuffer-message-timeout", Vminibuffer_message_timeout, 11643 DEFVAR_LISP ("minibuffer-message-timeout", Vminibuffer_message_timeout,