diff options
author | Johan Bockgård <bojohan@gnu.org> | 2009-09-27 13:08:27 +0000 |
---|---|---|
committer | Johan Bockgård <bojohan@gnu.org> | 2009-09-27 13:08:27 +0000 |
commit | 081bd373bab88e4c8686ac88dbc12acf0a6e828b (patch) | |
tree | 6e13369d2088cb536f5763ca0de3dcd2fb5abea9 /lisp/erc | |
parent | 58a5068ad1ef6a1ba81479bbf2b909373cefed91 (diff) | |
download | emacs-081bd373bab88e4c8686ac88dbc12acf0a6e828b.tar.gz |
(erc-button-keymap): Bind `follow-link'.
Diffstat (limited to 'lisp/erc')
-rw-r--r-- | lisp/erc/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/erc/erc-button.el | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog index c2e83911e0c..73b14f6f912 100644 --- a/lisp/erc/ChangeLog +++ b/lisp/erc/ChangeLog @@ -1,3 +1,7 @@ +2009-09-27 Johan Bockgård <bojohan@gnu.org> + + * erc-button.el (erc-button-keymap): Bind `follow-link'. + 2009-09-26 Johan Bockgård <bojohan@gnu.org> * erc-button.el (erc-button-add-button): Only call diff --git a/lisp/erc/erc-button.el b/lisp/erc/erc-button.el index 8eee1ce278f..a862e02f43b 100644 --- a/lisp/erc/erc-button.el +++ b/lisp/erc/erc-button.el @@ -216,6 +216,7 @@ PAR is a number of a regexp grouping whose text will be passed to (define-key map (kbd "<mouse-2>") 'erc-button-click-button)) (define-key map (kbd "TAB") 'erc-button-next) (define-key map (kbd "<backtab>") 'erc-button-previous) + (define-key map [follow-link] 'mouse-face) (set-keymap-parent map erc-mode-map) map) "Local keymap for ERC buttons.") |