From a4ea22d9989cece0dcbae511c3e321b34474fe14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Engdeg=C3=A5rd?= Date: Sun, 7 Sep 2025 17:47:51 +0200 Subject: [PATCH] * lisp/emacs-lisp/cl-lib.el (cl-copy-list): Not error-free, bug#79396 --- lisp/emacs-lisp/cl-lib.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/cl-lib.el b/lisp/emacs-lisp/cl-lib.el index f1b3b8fdbcc..07f37410d3f 100644 --- a/lisp/emacs-lisp/cl-lib.el +++ b/lisp/emacs-lisp/cl-lib.el @@ -486,7 +486,7 @@ Thus, `(cl-list* A B C D)' is equivalent to `(nconc (list A B C) D)', or to (defun cl-copy-list (list) "Return a copy of LIST, which may be a dotted list. The elements of LIST are not copied, just the list structure itself." - (declare (side-effect-free error-free)) + (declare (side-effect-free t)) (if (consp list) (let ((res nil)) (while (consp list) (push (pop list) res))