From: Juri Linkov Date: Fri, 23 Apr 2010 16:46:03 +0000 (+0300) Subject: * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display' X-Git-Url: https://git.hcoop.net/bpt/emacs.git/commitdiff_plain/e89dee790913cca76031b2379ae91b77fbdaf8d9 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display' property instead of `invisible' and `after-string' (bug#5998). --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 376e0cfc35..0235ca8e1a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-04-23 Juri Linkov + + * 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 * image-mode.el (image-mode-as-text): Fix typo in docstring. diff --git a/lisp/info.el b/lisp/info.el index c4b942bf8a..42ec43eee2 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -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.