aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-12-11 17:02:03 +0000
committerChong Yidong2009-12-11 17:02:03 +0000
commit315eb96d019f45edc8e37a3010dc61877c7a0f1e (patch)
tree6730f5527bb9874ee0f80bdacd50acdcaf2123a1
parent82d3343cd8c897ded4863828bf9600940ebf07a8 (diff)
downloademacs-315eb96d019f45edc8e37a3010dc61877c7a0f1e.tar.gz
emacs-315eb96d019f45edc8e37a3010dc61877c7a0f1e.zip
* progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
rather than down-mouse-1, based on follow-link conventions.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/progmodes/bug-reference.el2
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3ac96d3f010..0afa5ecf453 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12009-12-11 Chong Yidong <cyd@stupidchicken.com> 12009-12-11 Chong Yidong <cyd@stupidchicken.com>
2 2
3 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
4 rather than down-mouse-1, based on follow-link conventions.
5
3 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories 6 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
4 are compiled. 7 are compiled.
5 8
diff --git a/lisp/progmodes/bug-reference.el b/lisp/progmodes/bug-reference.el
index 98e0dddb50a..95cb7aed26e 100644
--- a/lisp/progmodes/bug-reference.el
+++ b/lisp/progmodes/bug-reference.el
@@ -32,7 +32,7 @@
32 32
33(defvar bug-reference-map 33(defvar bug-reference-map
34 (let ((map (make-sparse-keymap))) 34 (let ((map (make-sparse-keymap)))
35 (define-key map [down-mouse-1] 'bug-reference-push-button) 35 (define-key map [mouse-2] 'bug-reference-push-button)
36 (define-key map (kbd "C-c RET") 'bug-reference-push-button) 36 (define-key map (kbd "C-c RET") 'bug-reference-push-button)
37 map) 37 map)
38 "Keymap used by bug reference buttons.") 38 "Keymap used by bug reference buttons.")