From c6f9820d19f5a3fca0dda621a4a160af795493c4 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sun, 2 Feb 2025 12:09:03 +0200 Subject: [PATCH] mu4e-window: fix typo --- mu4e/mu4e-window.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mu4e/mu4e-window.el b/mu4e/mu4e-window.el index a172144d..5a3c7f14 100644 --- a/mu4e/mu4e-window.el +++ b/mu4e/mu4e-window.el @@ -369,7 +369,7 @@ This function is best called from the hook (unless (mu4e-current-buffer-type-p 'view) (mu4e-error "Cannot resize as this is not a valid view buffer")) (when-let* ((win (and mu4e-linked-headers-buffer - (get-buffer-window mu4e-linked-headers-buffer))) + (get-buffer-window mu4e-linked-headers-buffer)))) ;; This can fail for any number of reasons. If it does, we do ;; nothing. If the user has customized the window display we may ;; find it impossible to resize the window, and that should not be @@ -380,7 +380,7 @@ This function is best called from the hook (window-width win nil)) t t nil)) ((eq mu4e-split-view 'horizontal) - (set-window-text-height win mu4e-headers-visible-lines))))))) + (set-window-text-height win mu4e-headers-visible-lines)))))) (provide 'mu4e-window) ;;; mu4e-window.el ends here