diff options
| author | Dave Love | 2000-10-28 18:56:05 +0000 |
|---|---|---|
| committer | Dave Love | 2000-10-28 18:56:05 +0000 |
| commit | f7902bdcc9b9ca75b8e156d3560494f43a9b799e (patch) | |
| tree | 9d276e86ddb0cee12a26a6f8f740dfd9a6e78f97 | |
| parent | 5ebc02b3656890d1d110c671129c64547bdbcdd6 (diff) | |
| download | emacs-f7902bdcc9b9ca75b8e156d3560494f43a9b799e.tar.gz emacs-f7902bdcc9b9ca75b8e156d3560494f43a9b799e.zip | |
(Info-fontify-node): Add help-echo for menu items.
| -rw-r--r-- | lisp/info.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/info.el b/lisp/info.el index 14c6b13cda0..e02ae97a0e1 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -2450,10 +2450,10 @@ the variable `Info-file-list-for-emacs'." | |||
| 2450 | (put-text-property (match-beginning 0) | 2450 | (put-text-property (match-beginning 0) |
| 2451 | (1+ (match-beginning 0)) | 2451 | (1+ (match-beginning 0)) |
| 2452 | 'face 'info-menu-5)) | 2452 | 'face 'info-menu-5)) |
| 2453 | (put-text-property (match-beginning 1) (match-end 1) | 2453 | (add-text-properties (match-beginning 1) (match-end 1) |
| 2454 | 'face 'info-xref) | 2454 | '(face info-xref |
| 2455 | (put-text-property (match-beginning 1) (match-end 1) | 2455 | mouse-face highlight |
| 2456 | 'mouse-face 'highlight)))) | 2456 | help-echo "mouse-2: go to this node"))))) |
| 2457 | (set-buffer-modified-p nil)))) | 2457 | (set-buffer-modified-p nil)))) |
| 2458 | 2458 | ||
| 2459 | 2459 | ||