diff options
| author | John Wiegley | 2016-03-03 23:52:26 -0800 |
|---|---|---|
| committer | John Wiegley | 2016-03-03 23:52:26 -0800 |
| commit | 68ed6bfb6599104e5f1635a862a373735d818722 (patch) | |
| tree | 2488b3f959d3dbff87745fb265cd564445616b2a /src | |
| parent | eced64b2f76d1f85fb6fd54c67deadf1978cb344 (diff) | |
| parent | bd58c136d6ef33a24423720b5cf3c4e8c03fd4a9 (diff) | |
| download | emacs-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.c | 8 |
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 | ||
| 11625 | After a command is executed, if point moved into a region that has | 11625 | After a command is executed, if point moved into a region that has |
| 11626 | special properties (e.g. composition, display), Emacs adjusts point to | 11626 | special properties (e.g. composition, display), Emacs adjusts point to |
| 11627 | the boundary of the region. But when a command binds this variable to | 11627 | the boundary of the region. But when a command leaves this variable at |
| 11628 | non-nil, this point adjustment is suppressed. | 11628 | a non-nil value (e.g., with a setq), this point adjustment is suppressed. |
| 11629 | 11629 | ||
| 11630 | This variable is set to nil before reading a command, and is checked | 11630 | This variable is set to nil before reading a command, and is checked |
| 11631 | just after executing the command. */); | 11631 | just 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 | ||
| 11638 | The default value is nil, in which case point adjustments are | 11638 | The default value is nil, in which case point adjustments are |
| 11639 | suppressed only after special commands that set | 11639 | suppressed 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, |