aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/tar-mode.el
diff options
context:
space:
mode:
authorEli Zaretskii <[email protected]>2001-06-17 11:23:58 +0000
committerEli Zaretskii <[email protected]>2001-06-17 11:23:58 +0000
commita28eaf2c9b61be1a7d73b9e4a763c39716ffeee9 (patch)
tree75e71c7c604fec084bafe4ab14df216fd031ba67 /lisp/tar-mode.el
parent2ddf19dfe0387071066ac2f27ab2e96695083bac (diff)
(tar-header-block-summarize): Add help-echo to mouse-highlighted text.
Diffstat (limited to 'lisp/tar-mode.el')
-rw-r--r--lisp/tar-mode.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el
index 3a952e5d63..86e05ac269 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)
""))))