aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Francoise2005-11-24 16:10:00 +0000
committerRomain Francoise2005-11-24 16:10:00 +0000
commit357e60452711089bf14b1397c2df3b6dd61dde81 (patch)
treea1764da7301e15b066a331fc916ecefd0391311f
parent929d3fae89edcd7f12de9c1c4b3bae498d33f24a (diff)
downloademacs-357e60452711089bf14b1397c2df3b6dd61dde81.tar.gz
emacs-357e60452711089bf14b1397c2df3b6dd61dde81.zip
(Info-speedbar-fetch-file-nodes): Prefix temporary buffer name with a
space.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/info.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7c5f98f063a..cc95b8601c4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12005-11-24 Romain Francoise <romain@orebokech.com>
2
3 * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
4 buffer name with a space.
5
12005-11-24 Carsten Dominik <dominik@science.uva.nl> 62005-11-24 Carsten Dominik <dominik@science.uva.nl>
2 7
3 * textmodes/org.el: (org-export-plain-list-max-depth): Renamed 8 * textmodes/org.el: (org-export-plain-list-max-depth): Renamed
diff --git a/lisp/info.el b/lisp/info.el
index 48e933711cf..d5296364254 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -4132,7 +4132,7 @@ INDENT is the current indentation depth."
4132NODESPEC is a string of the form: (file)node." 4132NODESPEC is a string of the form: (file)node."
4133 (save-excursion 4133 (save-excursion
4134 ;; Set up a buffer we can use to fake-out Info. 4134 ;; Set up a buffer we can use to fake-out Info.
4135 (set-buffer (get-buffer-create "*info-browse-tmp*")) 4135 (set-buffer (get-buffer-create " *info-browse-tmp*"))
4136 (if (not (equal major-mode 'Info-mode)) 4136 (if (not (equal major-mode 'Info-mode))
4137 (Info-mode)) 4137 (Info-mode))
4138 ;; Get the node into this buffer 4138 ;; Get the node into this buffer