Merge pull request #85 from mads379/master

Close *Completions* buffer after evaluation
Este commit está contenido en:
Jérémie Dimino 2014-08-22 09:29:15 +01:00
commit 8545a6e048
Se han modificado 1 ficheros con 5 adiciones y 3 borrados

Ver fichero

@ -628,9 +628,11 @@ it is started."
;; End of completion
((string= command "completion-stop")
(utop-set-state 'edit)
(with-current-buffer utop-complete-buffer
(with-output-to-temp-buffer "*Completions*"
(display-completion-list (nreverse utop-completion))))
(if (> (length utop-completion) 1)
(with-current-buffer utop-complete-buffer
(with-output-to-temp-buffer "*Completions*"
(display-completion-list (nreverse utop-completion))))
(minibuffer-hide-completions))
(setq utop-completion nil)))))
(defun utop-process-output (process output)