emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r99779: * info.el (Info-fontify-no


From: Juri Linkov
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r99779: * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
Date: Fri, 23 Apr 2010 19:46:03 +0300
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99779
committer: Juri Linkov <address@hidden>
branch nick: emacs-23
timestamp: Fri 2010-04-23 19:46:03 +0300
message:
  * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
  property instead of `invisible' and `after-string' (bug#5998).
modified:
  lisp/ChangeLog
  lisp/info.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-04-23 16:35:57 +0000
+++ b/lisp/ChangeLog    2010-04-23 16:46:03 +0000
@@ -1,5 +1,10 @@
 2010-04-23  Juri Linkov  <address@hidden>
 
+       * 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  <address@hidden>
+
        * image-mode.el (image-mode-as-text): Fix typo in docstring.
 
 2010-04-23  Juanma Barranquero  <address@hidden>

=== modified file 'lisp/info.el'
--- a/lisp/info.el      2010-04-05 22:15:04 +0000
+++ b/lisp/info.el      2010-04-23 16:46:03 +0000
@@ -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.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]