Mercurial > emacs
changeset 38028:a5aad5623acc
(backquote-process): Handle `[,@SYMBOL].
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 13 Jun 2001 15:30:35 +0000 |
parents | a18180dc7aa1 |
children | 50a5496b5f2c |
files | lisp/emacs-lisp/backquote.el |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/backquote.el Wed Jun 13 15:26:29 2001 +0000 +++ b/lisp/emacs-lisp/backquote.el Wed Jun 13 15:30:35 2001 +0000 @@ -114,6 +114,8 @@ (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)