diff options
| author | Kim F. Storm | 2004-12-17 15:19:33 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-12-17 15:19:33 +0000 |
| commit | c44edf72cd01cb86d5527a9ba09860459aeba1e5 (patch) | |
| tree | 1d6815b3fb608330f3ffa797a7d552f1dd3e32f8 /lisp | |
| parent | 0ac804df7985219cf795d11fc8a5cc760619f787 (diff) | |
| download | emacs-c44edf72cd01cb86d5527a9ba09860459aeba1e5.tar.gz emacs-c44edf72cd01cb86d5527a9ba09860459aeba1e5.zip | |
Implement context-sentitive dual behaviour for mouse-1 click.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 38 | ||||
| -rw-r--r-- | lisp/gnus/ChangeLog | 8 |
2 files changed, 45 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7e19ddff5d7..e973b48e814 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,41 @@ | |||
| 1 | 2004-12-17 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * mouse.el (mouse-1-click-follows-link): New defcustom. | ||
| 4 | (mouse-on-link-p): New function. | ||
| 5 | (mouse-drag-region-1): Implement mouse-1-click-follows-link | ||
| 6 | functionality. Map a mouse-1 click event into a mouse-2 (or | ||
| 7 | other) event when position is inside a link. | ||
| 8 | |||
| 9 | * tooltip.el (tooltip-show-help-function): Replace "mouse-2" | ||
| 10 | prefix in tooltip text with "mouse-1" when this is a link | ||
| 11 | recognized by mouse-1-click-follows-link functionality. | ||
| 12 | |||
| 13 | * help.el (describe-key): Report effective and original binding | ||
| 14 | for mouse-1 when clicked on a link. | ||
| 15 | (describe-mode): Add follow-link property to "minor-mode" button. | ||
| 16 | |||
| 17 | * help-fns.el (describe-variable): Add follow-link property to | ||
| 18 | "below" button. | ||
| 19 | |||
| 20 | * help-mode.el (help-xref): Add follow-link property. | ||
| 21 | |||
| 22 | * apropos.el (apropos-symbol, apropos-function, apropos-macro) | ||
| 23 | (apropos-command, apropos-variable, apropos-face, apropos-group) | ||
| 24 | (apropos-widget, apropos-plist): Add follow-link property. | ||
| 25 | |||
| 26 | * pcvs-defs.el (cvs-mode-map): Map follow-link to a function which | ||
| 27 | checks if position is in a filename, rather than some other | ||
| 28 | clickable item. Function looks for cvs-filename-face at position. | ||
| 29 | |||
| 30 | * wid-edit.el (widget-specify-field, widget-specify-button): | ||
| 31 | Map a :follow-link keyword into a follow-link property. | ||
| 32 | (link): Add :follow-link keyword, map to RET binding. | ||
| 33 | |||
| 34 | * dired.el (dired-mode-map): Map follow-link to mouse-face. | ||
| 35 | |||
| 36 | * progmodes/compile.el (compilation-minor-mode-map) | ||
| 37 | (compilation-button-map, compilation-mode-map): Likewise. | ||
| 38 | |||
| 1 | 2004-12-17 Thien-Thi Nguyen <ttn@gnu.org> | 39 | 2004-12-17 Thien-Thi Nguyen <ttn@gnu.org> |
| 2 | 40 | ||
| 3 | * play/zone.el (zone): Init `line-spacing' from orig buffer. | 41 | * play/zone.el (zone): Init `line-spacing' from orig buffer. |
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 518a9903085..bb7b8337f4c 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2004-12-17 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face. | ||
| 4 | |||
| 5 | * gnus-sum.el (gnus-summary-mode-map): Likewise. | ||
| 6 | |||
| 1 | 2004-12-08 Stefan Monnier <monnier@iro.umontreal.ca> | 7 | 2004-12-08 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 8 | ||
| 3 | * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min. | 9 | * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min. |
| @@ -905,7 +911,7 @@ | |||
| 905 | * gnus-delay.el (gnus-delay-default-hour): Add :version. | 911 | * gnus-delay.el (gnus-delay-default-hour): Add :version. |
| 906 | 912 | ||
| 907 | * gnus-cite.el (gnus-cite-blank-line-after-header) | 913 | * gnus-cite.el (gnus-cite-blank-line-after-header) |
| 908 | (gnus-article-boring-faces): | 914 | (gnus-article-boring-faces): |
| 909 | 915 | ||
| 910 | * gnus-art.el (gnus-buttonized-mime-types) | 916 | * gnus-art.el (gnus-buttonized-mime-types) |
| 911 | (gnus-inhibit-mime-unbuttonizing) | 917 | (gnus-inhibit-mime-unbuttonizing) |