diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/simple.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 782dd9c3a2e..80c16726c50 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -2148,7 +2148,7 @@ visual feedback indicating the extent of the region being copied." | |||
| 2148 | ;; Swap point and mark. | 2148 | ;; Swap point and mark. |
| 2149 | (set-marker (mark-marker) (point) (current-buffer)) | 2149 | (set-marker (mark-marker) (point) (current-buffer)) |
| 2150 | (goto-char other-end) | 2150 | (goto-char other-end) |
| 2151 | (sit-for 1) | 2151 | (sit-for blink-matching-delay) |
| 2152 | ;; Swap back. | 2152 | ;; Swap back. |
| 2153 | (set-marker (mark-marker) other-end (current-buffer)) | 2153 | (set-marker (mark-marker) other-end (current-buffer)) |
| 2154 | (goto-char opoint) | 2154 | (goto-char opoint) |
| @@ -4258,7 +4258,10 @@ The completion list buffer is available as the value of `standard-output'.") | |||
| 4258 | 4258 | ||
| 4259 | (defface completions-common-part | 4259 | (defface completions-common-part |
| 4260 | '((t (:inherit default))) | 4260 | '((t (:inherit default))) |
| 4261 | "Face put on the common prefix substring in completions in *Completions* buffer." | 4261 | "Face put on the common prefix substring in completions in *Completions* buffer. |
| 4262 | The idea of `completions-common-part' is that you can use it to | ||
| 4263 | make the common parts less visible than normal, so that the rest | ||
| 4264 | of the differing parts is, by contrast, slightly highlighted." | ||
| 4262 | :group 'completion) | 4265 | :group 'completion) |
| 4263 | 4266 | ||
| 4264 | (defun completion-setup-function () | 4267 | (defun completion-setup-function () |