diff options
| -rw-r--r-- | lisp/emacs-lisp/backquote.el | 2 |
1 files changed, 2 insertions, 0 deletions
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." | |||
| 114 | (if (= (car n) 0) | 114 | (if (= (car n) 0) |
| 115 | (cons 0 s) | 115 | (cons 0 s) |
| 116 | (cons 1 (cond | 116 | (cons 1 (cond |
| 117 | ((not (listp (cdr n))) | ||
| 118 | (list 'vconcat (cdr n))) | ||
| 117 | ((eq (nth 1 n) 'list) | 119 | ((eq (nth 1 n) 'list) |
| 118 | (cons 'vector (nthcdr 2 n))) | 120 | (cons 'vector (nthcdr 2 n))) |
| 119 | ((eq (nth 1 n) 'append) | 121 | ((eq (nth 1 n) 'append) |