mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Ignore errors while parsing env versions.
This commit is contained in:
parent
63875f89b0
commit
c7cfa51f29
1 changed files with 2 additions and 1 deletions
|
@ -92,7 +92,8 @@ Example:
|
||||||
(parser callback))
|
(parser callback))
|
||||||
(set-process-filter proc
|
(set-process-filter proc
|
||||||
(lambda (_proc line)
|
(lambda (_proc line)
|
||||||
(funcall parser line)))))
|
(ignore-errors
|
||||||
|
(funcall parser line))))))
|
||||||
|
|
||||||
(provide 'doom-modeline-env)
|
(provide 'doom-modeline-env)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue