Merge pull request #85 from mads379/master

Close *Completions* buffer after evaluation
This commit is contained in:
Jérémie Dimino 2014-08-22 09:29:15 +01:00
commit 8545a6e048
1 changed files with 5 additions and 3 deletions

View File

@ -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)