diff options
| author | Eli Zaretskii | 2016-02-23 19:35:21 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2016-02-23 19:35:21 +0200 |
| commit | 00a4720318778eb6c51b326cfb37f685c230df9a (patch) | |
| tree | fead7bd85488e655a1fd5c0c532b267060f4df4c /src | |
| parent | c582def527fa905dce9abe87232849746aedc6a3 (diff) | |
| download | emacs-00a4720318778eb6c51b326cfb37f685c230df9a.tar.gz emacs-00a4720318778eb6c51b326cfb37f685c230df9a.zip | |
Further improve doc string of 'disable-point-adjustment'
* src/keyboard.c (syms_of_keyboard): <disable-point-adjustment>
<global-disable-point-adjustment>: Clarify doc strings. (Bug#22771)
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 31208696032..ef86e69bf91 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -11622,8 +11622,8 @@ It's called with one argument, the help string to display. */); | |||
| 11622 | 11622 | ||
| 11623 | After a command is executed, if point moved into a region that has | 11623 | After a command is executed, if point moved into a region that has |
| 11624 | special properties (e.g. composition, display), Emacs adjusts point to | 11624 | special properties (e.g. composition, display), Emacs adjusts point to |
| 11625 | the boundary of the region. But when a command binds this variable to | 11625 | the boundary of the region. But when a command leaves this variable at |
| 11626 | non-nil, this point adjustment is suppressed. | 11626 | a non-nil value (e.g., with a setq), this point adjustment is suppressed. |
| 11627 | 11627 | ||
| 11628 | This variable is set to nil before reading a command, and is checked | 11628 | This variable is set to nil before reading a command, and is checked |
| 11629 | just after executing the command. */); | 11629 | just after executing the command. */); |
| @@ -11634,8 +11634,8 @@ just after executing the command. */); | |||
| 11634 | doc: /* If non-nil, always suppress point adjustments. | 11634 | doc: /* If non-nil, always suppress point adjustments. |
| 11635 | 11635 | ||
| 11636 | The default value is nil, in which case point adjustments are | 11636 | The default value is nil, in which case point adjustments are |
| 11637 | suppressed only after special commands that set | 11637 | suppressed only after special commands that leave |
| 11638 | `disable-point-adjustment' (which see) to non-nil. */); | 11638 | `disable-point-adjustment' (which see) at a non-nil value. */); |
| 11639 | Vglobal_disable_point_adjustment = Qnil; | 11639 | Vglobal_disable_point_adjustment = Qnil; |
| 11640 | 11640 | ||
| 11641 | DEFVAR_LISP ("minibuffer-message-timeout", Vminibuffer_message_timeout, | 11641 | DEFVAR_LISP ("minibuffer-message-timeout", Vminibuffer_message_timeout, |