mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-27 11:09:52 +00:00
Fix when-let* for Emacs 25.
This commit is contained in:
parent
415140b368
commit
69e3f08d5b
1 changed files with 8 additions and 2 deletions
|
@ -63,6 +63,12 @@
|
|||
(require 'shrink-path)
|
||||
|
||||
|
||||
(unless (>= emacs-major-version 26)
|
||||
(with-no-warnings
|
||||
;; if-let and when-let are deprecated in Emacs 26+ in favor of their
|
||||
;; if-let* variants, so we alias them for 25 users.
|
||||
(defalias 'when-let* #'when-let)))
|
||||
|
||||
;;
|
||||
;; Variables
|
||||
;;
|
||||
|
@ -277,7 +283,7 @@ Example:
|
|||
"Set the modeline format. Does nothing if the modeline KEY doesn't exist.
|
||||
|
||||
If DEFAULT is non-nil, set the default mode-line for all buffers."
|
||||
(let ((modeline (doom-modeline key)))
|
||||
(when-let* ((modeline (doom-modeline key)))
|
||||
(setf (if default
|
||||
(default-value 'mode-line-format)
|
||||
(buffer-local-value 'mode-line-format (current-buffer)))
|
||||
|
@ -353,7 +359,7 @@ If STRICT-P, return nil if no project was found, otherwise return
|
|||
(defvar doom-modeline-current-window (frame-selected-window))
|
||||
(defun doom-modeline-set-selected-window (&rest _)
|
||||
"Set `doom-modeline-current-window' appropriately."
|
||||
(let ((win (frame-selected-window)))
|
||||
(when-let* ((win (frame-selected-window)))
|
||||
(unless (minibuffer-window-active-p win)
|
||||
(setq doom-modeline-current-window win)
|
||||
(force-mode-line-update))))
|
||||
|
|
Loading…
Reference in a new issue