aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/erc
diff options
context:
space:
mode:
authorJohan Bockgård <[email protected]>2009-09-27 13:08:27 +0000
committerJohan Bockgård <[email protected]>2009-09-27 13:08:27 +0000
commit081bd373bab88e4c8686ac88dbc12acf0a6e828b (patch)
tree6e13369d2088cb536f5763ca0de3dcd2fb5abea9 /lisp/erc
parent58a5068ad1ef6a1ba81479bbf2b909373cefed91 (diff)
(erc-button-keymap): Bind `follow-link'.
Diffstat (limited to 'lisp/erc')
-rw-r--r--lisp/erc/ChangeLog4
-rw-r--r--lisp/erc/erc-button.el1
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog
index c2e83911e0..73b14f6f91 100644
--- a/lisp/erc/ChangeLog
+++ b/lisp/erc/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-27 Johan Bockgård <[email protected]>
+
+ * erc-button.el (erc-button-keymap): Bind `follow-link'.
+
2009-09-26 Johan Bockgård <[email protected]>
* erc-button.el (erc-button-add-button): Only call
diff --git a/lisp/erc/erc-button.el b/lisp/erc/erc-button.el
index 8eee1ce278..a862e02f43 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.")