Fix a warning due to misquoted function.

This commit is contained in:
Mateus Rodrigues
2023-01-26 11:03:59 +00:00
parent c35a5a7469
commit e50820192c

View File

@@ -79,10 +79,10 @@
;; Removes *Completions* from buffer after you've opened a file.
(add-hook 'minibuffer-exit-hook
'(lambda ()
(let ((buffer "*Completions*"))
(and (get-buffer buffer)
(kill-buffer buffer)))))
#'(lambda ()
(let ((buffer "*Completions*"))
(and (get-buffer buffer)
(kill-buffer buffer)))))
;; Don't show *Buffer list* when opening multiple files at the same time.
(setq inhibit-startup-buffer-menu t)