From e50820192c3531bcc923c07f3ab859d40e405dc4 Mon Sep 17 00:00:00 2001 From: Mateus Rodrigues Date: Thu, 26 Jan 2023 11:03:59 +0000 Subject: [PATCH] Fix a warning due to misquoted function. --- elisp/settings.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/elisp/settings.el b/elisp/settings.el index c3e5a7c..c40f44f 100644 --- a/elisp/settings.el +++ b/elisp/settings.el @@ -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)