diff options
author | K. Handa <handa@gnu.org> | 2016-06-01 08:07:18 +0900 |
---|---|---|
committer | K. Handa <handa@gnu.org> | 2016-06-01 08:07:18 +0900 |
commit | 4efef3db2fb1c3a20b83a67948e614d9b0c258dd (patch) | |
tree | c0c08fc308869f7ba3d988594e4a51b69a70325b /lisp/wid-edit.el | |
parent | 694d5e5b56a9d55023ffc292188bd88f6f6cbca6 (diff) | |
parent | 01030eed9395f5004e7d0721394697d1ca90cc2f (diff) | |
download | emacs-4efef3db2fb1c3a20b83a67948e614d9b0c258dd.tar.gz emacs-4efef3db2fb1c3a20b83a67948e614d9b0c258dd.tar.bz2 emacs-4efef3db2fb1c3a20b83a67948e614d9b0c258dd.zip |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'lisp/wid-edit.el')
-rw-r--r-- | lisp/wid-edit.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index 0a0f4582b32..9ede9a5633f 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el @@ -1789,7 +1789,13 @@ If END is omitted, it defaults to the length of LIST." "An embedded link." :button-prefix 'widget-link-prefix :button-suffix 'widget-link-suffix - :follow-link 'mouse-face + ;; The `follow-link' property should only be used in those contexts where the + ;; mouse-1 event normally doesn't follow the link, yet the `link' widget + ;; seems to almost always be used in contexts where (down-)mouse-1 is bound + ;; to `widget-button-click' and hence the "mouse-1 to mouse-2" remapping is + ;; not necessary (and can even be harmful). So let's not add a :follow-link + ;; by default. See (bug#22434). + ;; :follow-link 'mouse-face :help-echo "Follow the link." :format "%[%t%]") |