diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2009-01-31 17:00:54 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2009-01-31 17:00:54 +0000 |
commit | 5311245342075ee34be4a8ecb64715889b0d4c4b (patch) | |
tree | 5544832bc37fbf7ec502017b8a43896758762ae1 /lisp/emacs-lisp | |
parent | 45545d6875b5aabef18b62dac9fe7f87cd70528a (diff) | |
download | emacs-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.el | 1 |
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." ) |