branch: elpa/evil-iedit-state commit 32fa715c3cee335967217f0444067187ca6e489d Author: vtomilin <1181134+vtomi...@users.noreply.github.com> Commit: Sylvain Benner <sylvain.ben...@gmail.com>
iedit-cleanup -> iedit-lib-cleanup? Hi, how are things? Call to iedit-cleanup in iedit-done (line 194) seems to cause "Symbol's function definition is void: iedit-cleanup" in 0.300.0@26.3 (spacemacs) when trying to exit iedit-mode (ESC-ESC or C-g). The ".emacs.d" is under "develop". If iedit-cleanup is replaced with iedit-lib-cleanup and iedit-done re-evaluated, the issue is gone. Hope this is useful. Thank you! /VT --- evil-iedit-state.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evil-iedit-state.el b/evil-iedit-state.el index 8ee6e9dc30..9c16185dfe 100644 --- a/evil-iedit-state.el +++ b/evil-iedit-state.el @@ -191,7 +191,7 @@ the initial string globally." ;; (kill-new iedit-last-occurrence-local)) ; Make occurrence the latest kill in the kill ring. (setq iedit-num-lines-to-expand-up 0) (setq iedit-num-lines-to-expand-down 0) - (iedit-cleanup) + (iedit-lib-cleanup) (setq iedit-initial-string-local nil) (setq iedit-mode nil) (force-mode-line-update)