From ea4a56de11657fd72e16dc27cf50c557c0715bc9 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 13 Jun 2001 15:30:35 +0000 Subject: [PATCH] (backquote-process): Handle `[,@SYMBOL]. --- lisp/emacs-lisp/backquote.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el index 9b7e7a95fb3..ea5fd54094c 100644 --- a/lisp/emacs-lisp/backquote.el +++ b/lisp/emacs-lisp/backquote.el @@ -114,6 +114,8 @@ Vectors work just like lists. Nested backquotes are permitted." (if (= (car n) 0) (cons 0 s) (cons 1 (cond + ((not (listp (cdr n))) + (list 'vconcat (cdr n))) ((eq (nth 1 n) 'list) (cons 'vector (nthcdr 2 n))) ((eq (nth 1 n) 'append) -- 2.39.2