Fix a warning due to misquoted function.
This commit is contained in:
@@ -79,10 +79,10 @@
|
|||||||
|
|
||||||
;; Removes *Completions* from buffer after you've opened a file.
|
;; Removes *Completions* from buffer after you've opened a file.
|
||||||
(add-hook 'minibuffer-exit-hook
|
(add-hook 'minibuffer-exit-hook
|
||||||
'(lambda ()
|
#'(lambda ()
|
||||||
(let ((buffer "*Completions*"))
|
(let ((buffer "*Completions*"))
|
||||||
(and (get-buffer buffer)
|
(and (get-buffer buffer)
|
||||||
(kill-buffer buffer)))))
|
(kill-buffer buffer)))))
|
||||||
|
|
||||||
;; Don't show *Buffer list* when opening multiple files at the same time.
|
;; Don't show *Buffer list* when opening multiple files at the same time.
|
||||||
(setq inhibit-startup-buffer-menu t)
|
(setq inhibit-startup-buffer-menu t)
|
||||||
|
|||||||
Reference in New Issue
Block a user