From 17f755366efc9bca3488738219484d8d94ccf755 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Thu, 30 Apr 2026 11:41:46 +0100 Subject: [PATCH] ; Fix shortdoc for seq-concatenate (bug#80810). --- lisp/emacs-lisp/shortdoc-doc.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/emacs-lisp/shortdoc-doc.el b/lisp/emacs-lisp/shortdoc-doc.el index eb642c1600b..9b1f00df127 100644 --- a/lisp/emacs-lisp/shortdoc-doc.el +++ b/lisp/emacs-lisp/shortdoc-doc.el @@ -998,6 +998,7 @@ :eval (seq-some #'floatp '(1 2.0 3))) "Building Sequences" (seq-concatenate + :args (type &rest sequences) :eval (seq-concatenate 'vector '(1 2) '(c d))) (seq-copy :eval (seq-copy '(a 2)))