diff options
| author | Lars Ingebrigtsen | 2021-01-20 18:52:17 +0100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2021-01-20 18:52:21 +0100 |
| commit | 7fe7efe0bbb00a541df1da68ca4cb4af14441fe1 (patch) | |
| tree | b8d0234799d2bac003a543519ecfd3f403291dcb | |
| parent | bd423b869978f33bea8d399684f02b0b5b53da43 (diff) | |
| download | emacs-7fe7efe0bbb00a541df1da68ca4cb4af14441fe1.tar.gz emacs-7fe7efe0bbb00a541df1da68ca4cb4af14441fe1.zip | |
cua-toggle-global-mark doc string clarification
* lisp/emulation/cua-gmrk.el (cua-toggle-global-mark): Clarify
that also inserted characters are affected (bug#8083).
| -rw-r--r-- | lisp/emulation/cua-gmrk.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/emulation/cua-gmrk.el b/lisp/emulation/cua-gmrk.el index 195bba1f317..6f6b9fce130 100644 --- a/lisp/emulation/cua-gmrk.el +++ b/lisp/emulation/cua-gmrk.el | |||
| @@ -87,9 +87,11 @@ | |||
| 87 | 87 | ||
| 88 | (defun cua-toggle-global-mark (stay) | 88 | (defun cua-toggle-global-mark (stay) |
| 89 | "Set or cancel the global marker. | 89 | "Set or cancel the global marker. |
| 90 | When the global marker is set, CUA cut and copy commands will automatically | 90 | When the global marker is set, CUA cut and copy commands will |
| 91 | insert the deleted or copied text before the global marker, even when the | 91 | automatically insert the inserted, deleted or copied text before |
| 92 | global marker is in another buffer. | 92 | the global marker, even when the global marker is in another |
| 93 | buffer. | ||
| 94 | |||
| 93 | If the global marker isn't set, set the global marker at point in the current | 95 | If the global marker isn't set, set the global marker at point in the current |
| 94 | buffer. Otherwise jump to the global marker position and cancel it. | 96 | buffer. Otherwise jump to the global marker position and cancel it. |
| 95 | With prefix argument, don't jump to global mark when canceling it." | 97 | With prefix argument, don't jump to global mark when canceling it." |