diff options
author | Eli Zaretskii <eliz@gnu.org> | 2012-10-27 11:54:04 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2012-10-27 11:54:04 +0200 |
commit | d069271c256aa0b4e6bee71a5995c36d20030cd5 (patch) | |
tree | ac4c46aff29e4c80d73c999426da2ce454a8a852 /lisp/profiler.el | |
parent | e2f022a3fa6986eea4df942dc52a00ae70ec193f (diff) | |
download | emacs-d069271c256aa0b4e6bee71a5995c36d20030cd5.tar.gz |
Fix help-echo text in profiler-report-make-entry-part.
lisp/profiler.el (profiler-report-make-entry-part): Fix help-echo
text to match the real keybindings.
Diffstat (limited to 'lisp/profiler.el')
-rw-r--r-- | lisp/profiler.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/profiler.el b/lisp/profiler.el index e9261eb1af7..38c0c0b83a7 100644 --- a/lisp/profiler.el +++ b/lisp/profiler.el @@ -353,7 +353,9 @@ this variable directly.") (propertize (symbol-name entry) 'face 'link 'mouse-face 'highlight - 'help-echo "mouse-2 or RET jumps to definition")) + 'help-echo "\ +mouse-2: jump to definition\n\ +RET: expand or collapse")) (t (profiler-format-entry entry))))) (propertize string 'profiler-entry entry))) |