summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuc Teirlinck <teirllm@auburn.edu>2004-06-23 14:39:11 +0000
committerLuc Teirlinck <teirllm@auburn.edu>2004-06-23 14:39:11 +0000
commit655f2a083e4ae7078c9c92d1e269043ab75c828b (patch)
tree830bc21befdfff3017c8fe4da9593b1ccf05f185
parent255d07dc33fc9b78acd47348372b1016ca27d210 (diff)
downloademacs-655f2a083e4ae7078c9c92d1e269043ab75c828b.tar.gz
(goto-address-fontify): Fix help-echo text.
-rw-r--r--lisp/net/goto-addr.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/net/goto-addr.el b/lisp/net/goto-addr.el
index b77be84deb3..428da8cbe8a 100644
--- a/lisp/net/goto-addr.el
+++ b/lisp/net/goto-addr.el
@@ -168,7 +168,7 @@ and `goto-address-fontify-p'."
(overlay-put this-overlay
'mouse-face goto-address-url-mouse-face)
(overlay-put this-overlay
- 'help-echo "mouse-2: follow URL")
+ 'help-echo "mouse-2, C-c RET: follow URL")
(overlay-put this-overlay
'keymap goto-address-highlight-keymap)
(overlay-put this-overlay 'goto-address t)))
@@ -182,7 +182,7 @@ and `goto-address-fontify-p'."
(overlay-put this-overlay 'mouse-face
goto-address-mail-mouse-face)
(overlay-put this-overlay
- 'help-echo "mouse-2: mail this address")
+ 'help-echo "mouse-2, C-c RET: mail this address")
(overlay-put this-overlay
'keymap goto-address-highlight-keymap)
(overlay-put this-overlay 'goto-address t))))))))