mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-30 19:19:52 +00:00
Ignore user errors in symbol overlay..
This commit is contained in:
parent
c48d10a6f9
commit
e7de8eef92
1 changed files with 2 additions and 1 deletions
|
@ -1090,7 +1090,8 @@ Requires `anzu', also `evil-anzu' if using `evil-mode' for compatibility with
|
||||||
(when (and (bound-and-true-p symbol-overlay-keywords-alist)
|
(when (and (bound-and-true-p symbol-overlay-keywords-alist)
|
||||||
(not (bound-and-true-p symbol-overlay-temp-symbol))
|
(not (bound-and-true-p symbol-overlay-temp-symbol))
|
||||||
(not (bound-and-true-p iedit-mode)))
|
(not (bound-and-true-p iedit-mode)))
|
||||||
(let* ((keyword (symbol-overlay-assoc (symbol-overlay-get-symbol)))
|
(let* ((keyword (symbol-overlay-assoc
|
||||||
|
(ignore-errors (symbol-overlay-get-symbol))))
|
||||||
(symbol (car keyword))
|
(symbol (car keyword))
|
||||||
(before (symbol-overlay-get-list symbol 'car))
|
(before (symbol-overlay-get-list symbol 'car))
|
||||||
(after (symbol-overlay-get-list symbol 'cdr))
|
(after (symbol-overlay-get-list symbol 'cdr))
|
||||||
|
|
Loading…
Reference in a new issue