aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2005-01-06 22:00:36 +0000
committerKim F. Storm2005-01-06 22:00:36 +0000
commit771069f89db38f115d56b41e3f60465b779be2a4 (patch)
tree3b26b7fd58f654964c2e888dd91d066c5c11edf4
parentd7975e20a0079d6159815aceb804126d0f153ac4 (diff)
downloademacs-771069f89db38f115d56b41e3f60465b779be2a4.tar.gz
emacs-771069f89db38f115d56b41e3f60465b779be2a4.zip
(completion-list-mode-map): Map follow-link to mouse-face.
-rw-r--r--lisp/simple.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 735c65948bf..565a6cba8ee 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -3590,7 +3590,7 @@ With argument, do this that many times."
3590The place mark goes is the same place \\[forward-word] would 3590The place mark goes is the same place \\[forward-word] would
3591move to with the same argument. 3591move to with the same argument.
3592Interactively, if this command is repeated 3592Interactively, if this command is repeated
3593or (in Transient Mark mode) if the mark is active, 3593or (in Transient Mark mode) if the mark is active,
3594it marks the next ARG words after the ones already marked." 3594it marks the next ARG words after the ones already marked."
3595 (interactive "P\np") 3595 (interactive "P\np")
3596 (cond ((and allow-extend 3596 (cond ((and allow-extend
@@ -4328,6 +4328,7 @@ With a prefix argument, set VARIABLE to VALUE buffer-locally."
4328(or completion-list-mode-map 4328(or completion-list-mode-map
4329 (let ((map (make-sparse-keymap))) 4329 (let ((map (make-sparse-keymap)))
4330 (define-key map [mouse-2] 'mouse-choose-completion) 4330 (define-key map [mouse-2] 'mouse-choose-completion)
4331 (define-key map [follow-link] 'mouse-face)
4331 (define-key map [down-mouse-2] nil) 4332 (define-key map [down-mouse-2] nil)
4332 (define-key map "\C-m" 'choose-completion) 4333 (define-key map "\C-m" 'choose-completion)
4333 (define-key map "\e\e\e" 'delete-completion-window) 4334 (define-key map "\e\e\e" 'delete-completion-window)