mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
feature/popup: fix possible void-variable error w/ hide-mode-line-mode
This commit is contained in:
@ -239,7 +239,7 @@ disabled."
|
||||
((symbolp modeline)
|
||||
(when-let* ((hide-mode-line-format (doom-modeline modeline)))
|
||||
(hide-mode-line-mode +1)))))
|
||||
(when hide-mode-line-mode
|
||||
(when (bound-and-true-p hide-mode-line-mode)
|
||||
(hide-mode-line-mode -1))))
|
||||
|
||||
;;;###autoload
|
||||
|
Reference in New Issue
Block a user