mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-27 19:19:53 +00:00
Remove reference to non-existent function
This commit is contained in:
parent
80e4076bbc
commit
d7d006d91f
1 changed files with 3 additions and 2 deletions
|
@ -157,8 +157,9 @@ PARSER should be a function for parsing COMMAND's output line-by-line, to
|
||||||
doom-modeline-env--parser ,parser-var)
|
doom-modeline-env--parser ,parser-var)
|
||||||
(doom-modeline-update-env))))
|
(doom-modeline-update-env))))
|
||||||
(format "Updates the %s version string in the modeline." ',name))
|
(format "Updates the %s version string in the modeline." ',name))
|
||||||
(dolist (hook ',(doom-enlist (eval hooks)))
|
(let ((hooks ',(eval hooks)))
|
||||||
(add-hook hook #',setup-fn))))))
|
(dolist (hook (if (listp hooks) hooks (list hooks)))
|
||||||
|
(add-hook hook #',setup-fn)))))))
|
||||||
|
|
||||||
|
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue