diff options
| author | Juri Linkov | 2004-04-27 06:45:49 +0000 |
|---|---|---|
| committer | Juri Linkov | 2004-04-27 06:45:49 +0000 |
| commit | e4ef3e9287e447f28ba586c3a2c9fe88ec7258f4 (patch) | |
| tree | 9b734f9b3ce72b4f9e12a18c256a77c778acc3a4 | |
| parent | 6afd5d68ae9dcea3ef6361174cb5af8b724441b0 (diff) | |
| download | emacs-e4ef3e9287e447f28ba586c3a2c9fe88ec7258f4.tar.gz emacs-e4ef3e9287e447f28ba586c3a2c9fe88ec7258f4.zip | |
(kill-ring-save): Use blink-matching-delay instead of the constant value 1.
(completions-common-part): Expand docstring.
| -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 () |