mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
fix(lib): doom-print-minimum-level: type error if level is undefined
This commit is contained in:
@ -166,7 +166,8 @@ Returns OUTPUT."
|
||||
(if (listp level)
|
||||
(memq doom-print-minimum-level level)
|
||||
(>= (get level 'print-level)
|
||||
(get doom-print-minimum-level 'print-level)))))
|
||||
(or (get doom-print-minimum-level 'print-level)
|
||||
9999)))))
|
||||
(when format
|
||||
(setq output (doom-print--format "%s" output)))
|
||||
(princ output stream)
|
||||
|
Reference in New Issue
Block a user