Function: backquote-list*

backquote-list* is a macro defined in backquote.el.gz.

Signature

(backquote-list* FIRST &rest LIST)

Documentation

Like list but the last argument is the tail of the new list.

For example (backquote-list* 'a 'b 'c) => (a b . c)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/backquote.el.gz
(defalias 'backquote-list* (symbol-function 'backquote-list*-macro))