Add arch taglines
[bpt/emacs.git] / lisp / emacs-lisp / backquote.el
CommitLineData
b035a678 1;;; backquote.el --- implement the ` Lisp construct
b578f267 2
cdab3e50 3;;; Copyright (C) 1990, 1992, 1994, 2001 Free Software Foundation, Inc.
c0274f38 4
41ea659a
RS
5;; Author: Rick Sladkey <jrs@world.std.com>
6;; Maintainer: FSF
7;; Keywords: extensions, internal
9750e079 8
be010748 9;; This file is part of GNU Emacs.
c440e42b
RS
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
7c938215 13;; the Free Software Foundation; either version 2, or (at your option)
c440e42b
RS
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
b578f267
EN
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
c440e42b 25
be010748 26;;; Commentary:
41ea659a 27
574cb02e
RS
28;; When the Lisp reader sees `(...), it generates (\` (...)).
29;; When it sees ,... inside such a backquote form, it generates (\, ...).
30;; For ,@... it generates (\,@ ...).
31
288f95bd 32;; This backquote will generate calls to the backquote-list* form.
41ea659a
RS
33;; Both a function version and a macro version are included.
34;; The macro version is used by default because it is faster
35;; and needs no run-time support. It should really be a subr.
c440e42b 36
e5167999 37;;; Code:
c440e42b 38
49116ac0
JB
39(provide 'backquote)
40
288f95bd 41;; function and macro versions of backquote-list*
41ea659a 42
288f95bd 43(defun backquote-list*-function (first &rest list)
41ea659a
RS
44 "Like `list' but the last argument is the tail of the new list.
45
288f95bd 46For example (backquote-list* 'a 'b 'c) => (a b . c)"
41ea659a
RS
47 (if list
48 (let* ((rest list) (newlist (cons first nil)) (last newlist))
49 (while (cdr rest)
50 (setcdr last (cons (car rest) nil))
51 (setq last (cdr last)
52 rest (cdr rest)))
53 (setcdr last (car rest))
54 newlist)
55 first))
56
288f95bd
RS
57(defmacro backquote-list*-macro (first &rest list)
58 "Like `list' but the last argument is the tail of the new list.
41ea659a 59
288f95bd 60For example (backquote-list* 'a 'b 'c) => (a b . c)"
41ea659a
RS
61 (setq list (reverse (cons first list))
62 first (car list)
63 list (cdr list))
64 (if list
65 (let* ((second (car list))
66 (rest (cdr list))
67 (newlist (list 'cons second first)))
68 (while rest
69 (setq newlist (list 'cons (car rest) newlist)
70 rest (cdr rest)))
71 newlist)
72 first))
73
c9c7f2c4 74(defalias 'backquote-list* (symbol-function 'backquote-list*-macro))
41ea659a
RS
75
76;; A few advertised variables that control which symbols are used
77;; to represent the backquote, unquote, and splice operations.
4c548238 78(defconst backquote-backquote-symbol '\`
cdab3e50 79 "Symbol used to represent a backquote or nested backquote.")
4c548238
DL
80
81(defconst backquote-unquote-symbol ',
cdab3e50 82 "Symbol used to represent an unquote inside a backquote.")
4c548238
DL
83
84(defconst backquote-splice-symbol ',@
cdab3e50 85 "Symbol used to represent a splice inside a backquote.")
41ea659a 86
325e3af2 87;;;###autoload
41ea659a
RS
88(defmacro backquote (arg)
89 "Argument STRUCTURE describes a template to build.
90
91The whole structure acts as if it were quoted except for certain
92places where expressions are evaluated and inserted or spliced in.
93
94For example:
95
1df90f8f
RS
96b => (ba bb bc) ; assume b has this value
97`(a b c) => (a b c) ; backquote acts like quote
2b1c5e12
RS
98`(a ,b c) => (a (ba bb bc) c) ; insert the value of b
99`(a ,@b c) => (a ba bb bc c) ; splice in the value of b
41ea659a 100
288f95bd
RS
101Vectors work just like lists. Nested backquotes are permitted."
102 (cdr (backquote-process arg)))
41ea659a
RS
103
104;; GNU Emacs has no reader macros
105
325e3af2 106;;;###autoload
1df90f8f 107(defalias '\` (symbol-function 'backquote))
41ea659a 108
288f95bd 109;; backquote-process returns a dotted-pair of a tag (0, 1, or 2) and
41ea659a
RS
110;; the backquote-processed structure. 0 => the structure is
111;; constant, 1 => to be unquoted, 2 => to be spliced in.
112;; The top-level backquote macro just discards the tag.
113
288f95bd 114(defun backquote-process (s)
41ea659a
RS
115 (cond
116 ((vectorp s)
288f95bd 117 (let ((n (backquote-process (append s ()))))
41ea659a
RS
118 (if (= (car n) 0)
119 (cons 0 s)
120 (cons 1 (cond
ea4a56de
RS
121 ((not (listp (cdr n)))
122 (list 'vconcat (cdr n)))
41ea659a
RS
123 ((eq (nth 1 n) 'list)
124 (cons 'vector (nthcdr 2 n)))
125 ((eq (nth 1 n) 'append)
126 (cons 'vconcat (nthcdr 2 n)))
127 (t
128 (list 'apply '(function vector) (cdr n))))))))
129 ((atom s)
130 (cons 0 (if (or (null s) (eq s t) (not (symbolp s)))
131 s
132 (list 'quote s))))
133 ((eq (car s) backquote-unquote-symbol)
134 (cons 1 (nth 1 s)))
135 ((eq (car s) backquote-splice-symbol)
136 (cons 2 (nth 1 s)))
137 ((eq (car s) backquote-backquote-symbol)
288f95bd 138 (backquote-process (cdr (backquote-process (nth 1 s)))))
41ea659a 139 (t
cd320f32
RS
140 (let ((rest s)
141 item firstlist list lists expression)
142 ;; Scan this list-level, setting LISTS to a list of forms,
143 ;; each of which produces a list of elements
144 ;; that should go in this level.
a1506d29 145 ;; The order of LISTS is backwards.
cd320f32
RS
146 ;; If there are non-splicing elements (constant or variable)
147 ;; at the beginning, put them in FIRSTLIST,
148 ;; as a list of tagged values (TAG . FORM).
149 ;; If there are any at the end, they go in LIST, likewise.
41ea659a 150 (while (consp rest)
cd320f32 151 ;; Turn . (, foo) into (,@ foo).
41ea659a
RS
152 (if (eq (car rest) backquote-unquote-symbol)
153 (setq rest (list (list backquote-splice-symbol (nth 1 rest)))))
288f95bd 154 (setq item (backquote-process (car rest)))
41ea659a
RS
155 (cond
156 ((= (car item) 2)
1d08cb50
RS
157 ;; Put the nonspliced items before the first spliced item
158 ;; into FIRSTLIST.
159 (if (null lists)
41ea659a
RS
160 (setq firstlist list
161 list nil))
1d08cb50 162 ;; Otherwise, put any preceding nonspliced items into LISTS.
41ea659a 163 (if list
288f95bd 164 (setq lists (cons (backquote-listify list '(0 . nil)) lists)))
41ea659a
RS
165 (setq lists (cons (cdr item) lists))
166 (setq list nil))
167 (t
168 (setq list (cons item list))))
169 (setq rest (cdr rest)))
cd320f32
RS
170 ;; Handle nonsplicing final elements, and the tail of the list
171 ;; (which remains in REST).
41ea659a 172 (if (or rest list)
288f95bd
RS
173 (setq lists (cons (backquote-listify list (backquote-process rest))
174 lists)))
a1506d29 175 ;; Turn LISTS into a form that produces the combined list.
cd320f32 176 (setq expression
41ea659a 177 (if (or (cdr lists)
cd320f32 178 (eq (car-safe (car lists)) backquote-splice-symbol))
41ea659a
RS
179 (cons 'append (nreverse lists))
180 (car lists)))
cd320f32 181 ;; Tack on any initial elements.
41ea659a 182 (if firstlist
cd320f32
RS
183 (setq expression (backquote-listify firstlist (cons 1 expression))))
184 (if (eq (car-safe expression) 'quote)
41ea659a 185 (cons 0 (list 'quote s))
cd320f32 186 (cons 1 expression))))))
41ea659a 187
288f95bd
RS
188;; backquote-listify takes (tag . structure) pairs from backquote-process
189;; and decides between append, list, backquote-list*, and cons depending
41ea659a
RS
190;; on which tags are in the list.
191
288f95bd 192(defun backquote-listify (list old-tail)
41ea659a
RS
193 (let ((heads nil) (tail (cdr old-tail)) (list-tail list) (item nil))
194 (if (= (car old-tail) 0)
195 (setq tail (eval tail)
196 old-tail nil))
197 (while (consp list-tail)
198 (setq item (car list-tail))
199 (setq list-tail (cdr list-tail))
200 (if (or heads old-tail (/= (car item) 0))
201 (setq heads (cons (cdr item) heads))
202 (setq tail (cons (eval (cdr item)) tail))))
203 (cond
204 (tail
205 (if (null old-tail)
206 (setq tail (list 'quote tail)))
207 (if heads
208 (let ((use-list* (or (cdr heads)
209 (and (consp (car heads))
210 (eq (car (car heads))
211 backquote-splice-symbol)))))
288f95bd 212 (cons (if use-list* 'backquote-list* 'cons)
41ea659a
RS
213 (append heads (list tail))))
214 tail))
215 (t (cons 'list heads)))))
216
ab5796a9 217;;; arch-tag: 1a26206a-6b5e-4c56-8e24-2eef0f7e0e7a
55535639 218;;; backquote.el ends here