mirror of
https://github.com/pestctrl/emacs-config.git
synced 2026-02-16 16:24:18 +00:00
This is a bug, don't string-replace on nil
This commit is contained in:
parent
08d37618ac
commit
58f1597a55
1 changed files with 2 additions and 1 deletions
|
|
@ -65,7 +65,8 @@
|
|||
(advice-add #'lsp--progress-status
|
||||
:filter-return
|
||||
#'(lambda (result)
|
||||
(concat (string-replace "%%" "%%%%" result) " "))))
|
||||
(when result
|
||||
(concat (string-replace "%%" "%%%%" result) " ")))))
|
||||
|
||||
(when my-ec/at-ti
|
||||
(add-to-list 'exec-path
|
||||
|
|
|
|||
Loading…
Reference in a new issue