# HG changeset patch # User Kim F. Storm # Date 1105048836 0 # Node ID fcfd5e8c8e7741e5d81269dd0454af4eee90ff2b # Parent 1c58b91ca0df471c5ef2ff2d0892d2e1cd249410 (completion-list-mode-map): Map follow-link to mouse-face. diff -r 1c58b91ca0df -r fcfd5e8c8e77 lisp/simple.el --- a/lisp/simple.el Thu Jan 06 21:58:17 2005 +0000 +++ b/lisp/simple.el Thu Jan 06 22:00:36 2005 +0000 @@ -3590,7 +3590,7 @@ The place mark goes is the same place \\[forward-word] would move to with the same argument. Interactively, if this command is repeated -or (in Transient Mark mode) if the mark is active, +or (in Transient Mark mode) if the mark is active, it marks the next ARG words after the ones already marked." (interactive "P\np") (cond ((and allow-extend @@ -4328,6 +4328,7 @@ (or completion-list-mode-map (let ((map (make-sparse-keymap))) (define-key map [mouse-2] 'mouse-choose-completion) + (define-key map [follow-link] 'mouse-face) (define-key map [down-mouse-2] nil) (define-key map "\C-m" 'choose-completion) (define-key map "\e\e\e" 'delete-completion-window)