Appease the byte compiler and clean up the code

This commit is contained in:
Mickey Petersen
2022-12-06 09:46:39 +00:00
parent 8ac172cd08
commit 42add64683
6 changed files with 37 additions and 35 deletions

View File

@ -222,11 +222,11 @@ if you otherwise want to use `mu4e-index-lazy-check'."
This function uses `display-buffer' with a default preset.
To override this behavior, customize `display-buffer-alist'."
(let ((win (display-buffer buf `(display-buffer-at-bottom
(preserve-size . (nil . t))
(height . ,height)
(window-height . fit-window-to-buffer)))))
(set-window-buffer (get-buffer-window buf) buf)))
(display-buffer buf `(display-buffer-at-bottom
(preserve-size . (nil . t))
(height . ,height)
(window-height . fit-window-to-buffer)))
(set-window-buffer (get-buffer-window buf) buf))
(defun mu4e--update-sentinel-func (proc _msg)
"Sentinel function for the update process PROC."