1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-27 10:54:40 +00:00

* info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'

property instead of `invisible' and `after-string' (bug#5998).
This commit is contained in:
Juri Linkov 2010-04-23 19:46:03 +03:00
parent 316d12fb81
commit e89dee7909
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2010-04-23 Juri Linkov <juri@jurta.org>
* info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
property instead of `invisible' and `after-string' (bug#5998).
2010-04-23 Juri Linkov <juri@jurta.org>
* image-mode.el (image-mode-as-text): Fix typo in docstring.

View File

@ -4295,8 +4295,7 @@ the variable `Info-file-list-for-emacs'."
(cond
((> Info-breadcrumbs-depth 0)
(let ((ov (make-overlay (point-min) (1+ header-end))))
(overlay-put ov 'invisible t)
(overlay-put ov 'after-string (Info-breadcrumbs))
(overlay-put ov 'display (Info-breadcrumbs))
(overlay-put ov 'evaporate t)))
((not (bobp))
;; Hide the punctuation at the end, too.