Fix doom/delete-backward-word errors in minibuffer
The cause of the error is harmless, but the error itself was causing breakage in the minibuffer.
This commit is contained in:
parent
2f577482a0
commit
91e1eac024
1 changed files with 1 additions and 1 deletions
|
@ -222,7 +222,7 @@ line to beginning of line. Same as `evil-delete-back-to-indentation'."
|
||||||
"Like `backward-kill-word', but doesn't affect the kill-ring."
|
"Like `backward-kill-word', but doesn't affect the kill-ring."
|
||||||
(interactive "p")
|
(interactive "p")
|
||||||
(let (kill-ring)
|
(let (kill-ring)
|
||||||
(backward-kill-word arg)))
|
(ignore-errors (backward-kill-word arg))))
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun doom/dumb-indent ()
|
(defun doom/dumb-indent ()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue