branch: externals/debbugs
commit 294b51c0824b524427f4f147f1f676fa840fa85e
Author: Lars Ingebrigtsen <[email protected]>
Commit: Lars Ingebrigtsen <[email protected]>
Don't explicitly bind mouse-1.
As Michael Heerdegen <[email protected]> says:
However, also binding mouse-1 is not necessary. Depending on the
setting of `mouse-1-click-follows-link', which is non-nil by default,
mouse-1 already follows links - see its doc. We should leave it up to
the user if he wants to use mouse-1 for following or not.
---
debbugs-gnu.el | 1 -
1 file changed, 1 deletion(-)
diff --git a/debbugs-gnu.el b/debbugs-gnu.el
index 3e39404..4d9d6ad 100644
--- a/debbugs-gnu.el
+++ b/debbugs-gnu.el
@@ -220,7 +220,6 @@ suppressed bugs is toggled by
`debbugs-gnu-toggle-suppress'."
(defvar debbugs-gnu-widget-map
(let ((map (make-sparse-keymap)))
(define-key map "\r" 'widget-button-press)
- (define-key map [mouse-1] 'widget-button-press)
(define-key map [mouse-2] 'widget-button-press)
map))