branch: elpa/undo-fu
commit d967568f0ef3702fb3b0d91467b464e93c3bac84
Author: Campbell Barton <[email protected]>
Commit: Campbell Barton <[email protected]>
Fix issue with manipulating a (potentially quoted) list
---
undo-fu.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/undo-fu.el b/undo-fu.el
index 538d5b98142..697183cfefc 100644
--- a/undo-fu.el
+++ b/undo-fu.el
@@ -459,7 +459,8 @@ Optional argument ARG the number of steps to undo."
;; `aggressive-indent-mode' (setup if in use).
(defvar aggressive-indent-protected-commands)
(with-eval-after-load 'aggressive-indent
- (nconc aggressive-indent-protected-commands undo-fu--commands))
+ (setq aggressive-indent-protected-commands
+ (append aggressive-indent-protected-commands undo-fu--commands)))
(provide 'undo-fu)
;; Local Variables: