From: Stefan Kangas Date: Mon, 6 Jan 2025 19:06:49 +0000 (+0100) Subject: ; Silence byte-compiler X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a9ece0191348d500baafee9eaa60ef6a7d71648a;p=emacs.git ; Silence byte-compiler (cherry picked from commit d98516a27b9ff77e1106ae5801c7ca8802eaa656) --- diff --git a/lisp/man.el b/lisp/man.el index c0dea4f276d..3b264dcb4e1 100644 --- a/lisp/man.el +++ b/lisp/man.el @@ -2027,7 +2027,7 @@ Specify which REFERENCE to use; default is based on word at point." (defun Man-view-header-file (file) "View a header file specified by FILE from `Man-header-file-path'." - (when-let ((match (man--find-header-files file))) + (when-let* ((match (man--find-header-files file))) (view-file (car match)) (car match)))