aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2010-04-23 19:46:03 +0300
committerJuri Linkov2010-04-23 19:46:03 +0300
commite89dee790913cca76031b2379ae91b77fbdaf8d9 (patch)
tree722b52dbf1bd6d4b30c588965e0351f5d5dcb4bc
parent316d12fb81894b6e202ff26aae394395540e98bf (diff)
downloademacs-e89dee790913cca76031b2379ae91b77fbdaf8d9.tar.gz
emacs-e89dee790913cca76031b2379ae91b77fbdaf8d9.zip
* info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
property instead of `invisible' and `after-string' (bug#5998).
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/info.el3
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 376e0cfc35f..0235ca8e1a6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,10 @@
12010-04-23 Juri Linkov <juri@jurta.org> 12010-04-23 Juri Linkov <juri@jurta.org>
2 2
3 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
4 property instead of `invisible' and `after-string' (bug#5998).
5
62010-04-23 Juri Linkov <juri@jurta.org>
7
3 * image-mode.el (image-mode-as-text): Fix typo in docstring. 8 * image-mode.el (image-mode-as-text): Fix typo in docstring.
4 9
52010-04-23 Juanma Barranquero <lekktu@gmail.com> 102010-04-23 Juanma Barranquero <lekktu@gmail.com>
diff --git a/lisp/info.el b/lisp/info.el
index c4b942bf8a1..42ec43eee22 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -4295,8 +4295,7 @@ the variable `Info-file-list-for-emacs'."
4295 (cond 4295 (cond
4296 ((> Info-breadcrumbs-depth 0) 4296 ((> Info-breadcrumbs-depth 0)
4297 (let ((ov (make-overlay (point-min) (1+ header-end)))) 4297 (let ((ov (make-overlay (point-min) (1+ header-end))))
4298 (overlay-put ov 'invisible t) 4298 (overlay-put ov 'display (Info-breadcrumbs))
4299 (overlay-put ov 'after-string (Info-breadcrumbs))
4300 (overlay-put ov 'evaporate t))) 4299 (overlay-put ov 'evaporate t)))
4301 ((not (bobp)) 4300 ((not (bobp))
4302 ;; Hide the punctuation at the end, too. 4301 ;; Hide the punctuation at the end, too.