# HG changeset patch # User Juri Linkov # Date 1272041163 -10800 # Node ID b9c7f875c4e8bac571e3233edb7dad61bf629239 # Parent 224e769e00a2132a722760828275b870e1b2b431 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display' property instead of `invisible' and `after-string' (bug#5998). diff -r 224e769e00a2 -r b9c7f875c4e8 lisp/ChangeLog --- a/lisp/ChangeLog Fri Apr 23 19:35:57 2010 +0300 +++ b/lisp/ChangeLog Fri Apr 23 19:46:03 2010 +0300 @@ -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 -r 224e769e00a2 -r b9c7f875c4e8 lisp/info.el --- a/lisp/info.el Fri Apr 23 19:35:57 2010 +0300 +++ b/lisp/info.el Fri Apr 23 19:46:03 2010 +0300 @@ -4295,8 +4295,7 @@ (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.