diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2006-02-15 02:41:02 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2006-02-15 02:41:02 +0000 |
commit | 5c1944f87881f65229be0f107f3e653e04c6e07b (patch) | |
tree | 3bbd691a9d177f7a68f906028898d3af4c967bc8 /lisp/wid-edit.el | |
parent | c1c0806ec03553d264ab86a4f791a5b80e59784c (diff) | |
download | emacs-5c1944f87881f65229be0f107f3e653e04c6e07b.tar.gz |
* wid-edit.el (widget-keymap): Bind down-mouse-1 to
widget-button-click.
* cus-edit.el (custom-mode-map): Remove mouse-1 binding.
Diffstat (limited to 'lisp/wid-edit.el')
-rw-r--r-- | lisp/wid-edit.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index 52bf3a212be..659c562ea65 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el @@ -860,6 +860,7 @@ button end points." (define-key map [(shift tab)] 'advertised-widget-backward) (define-key map [backtab] 'widget-backward) (define-key map [down-mouse-2] 'widget-button-click) + (define-key map [down-mouse-1] 'widget-button-click) (define-key map "\C-m" 'widget-button-press) map) "Keymap containing useful binding for buffers containing widgets. |