mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Stop byte-compiling modeline format functions
Otherwise there will be a bunch of `Unused lexical var` warnings if the file is not byte-compiled beforehand.
This commit is contained in:
parent
88610aad3b
commit
1a2226b242
1 changed files with 1 additions and 4 deletions
|
@ -286,10 +286,7 @@ active.")
|
|||
(concat "Modeline:\n"
|
||||
(format " %s\n %s"
|
||||
(prin1-to-string lhs)
|
||||
(prin1-to-string rhs))))
|
||||
(unless (bound-and-true-p byte-compile-current-file)
|
||||
(let (byte-compile-warnings)
|
||||
(byte-compile sym)))))
|
||||
(prin1-to-string rhs))))))
|
||||
|
||||
(defun doom-modeline (key)
|
||||
"Return a mode-line configuration associated with KEY (a symbol).
|
||||
|
|
Loading…
Reference in a new issue