Could we please remove the binding of button3 in wid-edit.el? This makes
it impossible to have context-sensitive popups on a widget without
specifying a :button-keymap property on every single one.
Emacs 20.2.95 does not have this binding - did we add it in for a
particular reason?
(unless widget-button-keymap
(setq widget-button-keymap (make-sparse-keymap))
(set-keymap-parents widget-button-keymap widget-keymap)
(define-key widget-button-keymap "\C-m" 'widget-button-press)
(define-key widget-button-keymap [button2] 'widget-button-click)
;; Ideally, button3 within a button should invoke a button-specific
;; menu.
(define-key widget-button-keymap [button3] 'widget-button-click)
;;Glyph support.
(define-key widget-button-keymap [button1] 'widget-button1-click))
-Bill P.
Show replies by date