From: Romain Francoise Date: Thu, 24 Nov 2005 16:10:00 +0000 (+0000) Subject: (Info-speedbar-fetch-file-nodes): Prefix temporary buffer name with a X-Git-Tag: emacs-pretest-22.0.90~5691 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=357e60452711089bf14b1397c2df3b6dd61dde81;p=emacs.git (Info-speedbar-fetch-file-nodes): Prefix temporary buffer name with a space. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7c5f98f063a..cc95b8601c4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2005-11-24 Romain Francoise + + * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary + buffer name with a space. + 2005-11-24 Carsten Dominik * 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." 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