]> git.eshelyaron.com Git - emacs.git/commitdiff
(comint-dynamic-list-completions): No space in *Completions*.
authorRichard M. Stallman <rms@gnu.org>
Fri, 10 Jun 1994 23:02:04 +0000 (23:02 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 10 Jun 1994 23:02:04 +0000 (23:02 +0000)
lisp/comint.el

index eb9b083fb42c6516b100c36f956d9596ca5a5dd8..286536574a843ff70f3937eac164947f7e241cab 100644 (file)
@@ -1965,17 +1965,17 @@ See also `comint-dynamic-complete-filename'."
   "List in help buffer sorted COMPLETIONS.
 Typing SPC flushes the help buffer."
   (let ((conf (current-window-configuration)))
-    (with-output-to-temp-buffer " *Completions*"
+    (with-output-to-temp-buffer "*Completions*"
       (display-completion-list (sort completions 'string-lessp)))
     (message "Hit space to flush")
     (let (key first)
       (if (save-excursion
-           (set-buffer (get-buffer " *Completions*"))
+           (set-buffer (get-buffer "*Completions*"))
            (setq key (read-key-sequence nil)
                  first (aref key 0))
            (and (consp first)
                 (eq (window-buffer (posn-window (event-start first)))
-                    (get-buffer " *Completions*"))
+                    (get-buffer "*Completions*"))
                 (eq (key-binding key) 'mouse-choose-completion)))
          ;; If the user does mouse-choose-completion with the mouse,
          ;; execute the command, then delete the completion window.