summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2009-01-31 17:00:54 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2009-01-31 17:00:54 +0000
commit5311245342075ee34be4a8ecb64715889b0d4c4b (patch)
tree5544832bc37fbf7ec502017b8a43896758762ae1 /lisp/emacs-lisp
parent45545d6875b5aabef18b62dac9fe7f87cd70528a (diff)
downloademacs-5311245342075ee34be4a8ecb64715889b0d4c4b.tar.gz
emacs-5311245342075ee34be4a8ecb64715889b0d4c4b.tar.bz2
emacs-5311245342075ee34be4a8ecb64715889b0d4c4b.zip
(elp-results-symname-map): Add follow-link.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/elp.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/elp.el b/lisp/emacs-lisp/elp.el
index 57966faa567..900b93ef3db 100644
--- a/lisp/emacs-lisp/elp.el
+++ b/lisp/emacs-lisp/elp.el
@@ -537,6 +537,7 @@ original definition, use \\[elp-restore-function] or \\[elp-restore-all]."
(defvar elp-results-symname-map
(let ((map (make-sparse-keymap)))
(define-key map [mouse-2] 'elp-results-jump-to-definition)
+ (define-key map [follow-link] 'mouse-face)
(define-key map "\C-m" 'elp-results-jump-to-definition)
map)
"Keymap used on the function name column." )