From d67ca6739c3ed0c4ac36d3ee5a4eb158d791f668 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 7 Mar 2022 09:59:43 -0500 Subject: [PATCH] * lisp/emacs-lisp/seq.el (seq-concatenate): Accept non-`sequencep` sequences --- lisp/emacs-lisp/seq.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el index abfe51d32b5..5ea9fae2e9b 100644 --- a/lisp/emacs-lisp/seq.el +++ b/lisp/emacs-lisp/seq.el @@ -299,6 +299,7 @@ sorted. FUNCTION must be a function of one argument." TYPE must be one of following symbols: vector, string or list. \n(fn TYPE SEQUENCE...)" + (setq sequences (mapcar #'seq-into-sequence sequences)) (pcase type ('vector (apply #'vconcat sequences)) ('string (apply #'concat sequences)) -- 2.39.2