From: Eli Zaretskii Date: Sun, 17 Jun 2001 11:23:58 +0000 (+0000) Subject: (tar-header-block-summarize): Add help-echo to mouse-highlighted text. X-Git-Tag: emacs-pretest-21.0.104~239 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a28eaf2c9b61be1a7d73b9e4a763c39716ffeee9;p=emacs.git (tar-header-block-summarize): Add help-echo to mouse-highlighted text. --- diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el index 3a952e5d636..86e05ac269e 100644 --- a/lisp/tar-mode.el +++ b/lisp/tar-mode.el @@ -366,7 +366,9 @@ MODE should be an integer which is a file mode value." (if (= 0 (length gname)) gid gname) size (if tar-mode-show-date (tar-clip-time-string time) "") - (propertize name 'mouse-face 'highlight) + (propertize name + 'mouse-face 'highlight + 'help-echo "mouse-2: extract this file into a buffer") (if (or (eq type 1) (eq type 2)) (concat (if (= type 1) " ==> " " --> ") link-name) ""))))