diff options
author | Romain Francoise <romain@orebokech.com> | 2005-11-24 16:10:00 +0000 |
---|---|---|
committer | Romain Francoise <romain@orebokech.com> | 2005-11-24 16:10:00 +0000 |
commit | 357e60452711089bf14b1397c2df3b6dd61dde81 (patch) | |
tree | a1764da7301e15b066a331fc916ecefd0391311f /lisp/info.el | |
parent | 929d3fae89edcd7f12de9c1c4b3bae498d33f24a (diff) | |
download | emacs-357e60452711089bf14b1397c2df3b6dd61dde81.tar.gz |
(Info-speedbar-fetch-file-nodes): Prefix temporary buffer name with a
space.
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." NODESPEC is a string of the form: (file)node." (save-excursion ;; Set up a buffer we can use to fake-out Info. - (set-buffer (get-buffer-create "*info-browse-tmp*")) + (set-buffer (get-buffer-create " *info-browse-tmp*")) (if (not (equal major-mode 'Info-mode)) (Info-mode)) ;; Get the node into this buffer |