aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2006-02-13 15:44:01 +0000
committerJuri Linkov2006-02-13 15:44:01 +0000
commitfd5b25da6a3ea29591d128455b4ddd325b34a174 (patch)
tree1de57c7e0b188ab9d92340a50ae832f26b86c64a
parentace665ea95af278749a80a5a743ce4a16374229c (diff)
downloademacs-fd5b25da6a3ea29591d128455b4ddd325b34a174.tar.gz
emacs-fd5b25da6a3ea29591d128455b4ddd325b34a174.zip
(info-xref-visited): Inherit from info-xref too.
(Info-set-mode-line): Replace occurrences of `%' by `%%' when propertizing Info-current-file and Info-current-node.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/info.el8
2 files changed, 11 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c53fb8122b8..b65f1d554c5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12006-02-13 Martin Rudalics <rudalics@gmx.at> (tiny change)
2
3 * info.el (info-xref-visited): Inherit from info-xref too.
4 (Info-set-mode-line): Replace occurrences of `%' by `%%'
5 when propertizing Info-current-file and Info-current-node.
6
12006-02-13 Juri Linkov <juri@jurta.org> 72006-02-13 Juri Linkov <juri@jurta.org>
2 8
3 * tumme.el (tumme-thumbnail-storage): Fix docstring. 9 * tumme.el (tumme-thumbnail-storage): Fix docstring.
diff --git a/lisp/info.el b/lisp/info.el
index 96cbb218e96..e3514fb9729 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -134,7 +134,7 @@ The Lisp code is executed when the node is selected.")
134 :group 'info) 134 :group 'info)
135 135
136(defface info-xref-visited 136(defface info-xref-visited
137 '((t :inherit link-visited)) 137 '((t :inherit (link-visited info-xref)))
138 "Face for visited Info cross-references." 138 "Face for visited Info cross-references."
139 :version "22.1" 139 :version "22.1"
140 :group 'info) 140 :group 'info)
@@ -1407,11 +1407,13 @@ any double quotes or backslashes must be escaped (\\\",\\\\)."
1407 (concat 1407 (concat
1408 " (" 1408 " ("
1409 (if (stringp Info-current-file) 1409 (if (stringp Info-current-file)
1410 (file-name-nondirectory Info-current-file) 1410 (replace-regexp-in-string
1411 "%" "%%" (file-name-nondirectory Info-current-file))
1411 "") 1412 "")
1412 ") " 1413 ") "
1413 (if Info-current-node 1414 (if Info-current-node
1414 (propertize Info-current-node 1415 (propertize (replace-regexp-in-string
1416 "%" "%%" Info-current-node)
1415 'face 'mode-line-buffer-id 1417 'face 'mode-line-buffer-id
1416 'help-echo 1418 'help-echo
1417 "mouse-1: scroll forward, mouse-3: scroll back" 1419 "mouse-1: scroll forward, mouse-3: scroll back"