From: Richard M. Stallman Date: Wed, 13 Jun 2001 15:30:35 +0000 (+0000) Subject: (backquote-process): Handle `[,@SYMBOL]. X-Git-Tag: emacs-pretest-21.0.104~282 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ea4a56de11657fd72e16dc27cf50c557c0715bc9;p=emacs.git (backquote-process): Handle `[,@SYMBOL]. --- 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)