diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/progmodes/bug-reference.el | 2 |
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 @@ | |||
| 1 | 2009-12-11 Chong Yidong <cyd@stupidchicken.com> | 1 | 2009-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.") |