]> code.delx.au - gnu-emacs/blobdiff - lisp/emacs-lisp/backquote.el
(Abbrevs): A @node line without explicit Prev, Next, and Up links.
[gnu-emacs] / lisp / emacs-lisp / backquote.el
index 419e5ca02ba34c9952a4158daf4160f40d0808c3..c9f2a052b0bd31e71f8a20ec7867077c1f9d8693 100644 (file)
@@ -1,16 +1,17 @@
-;;; New backquote for GNU Emacs.
-;;; Copyright (C) 1990, 1992 Free Software Foundation, Inc.
+;;; backquote.el --- implement the ` Lisp construct
+
+;; Copyright (C) 1990, 1992, 1994, 2001, 2002, 2003, 2004,
+;;   2005, 2006 Free Software Foundation, Inc.
 
 ;; Author: Rick Sladkey <jrs@world.std.com>
 ;; Maintainer: FSF
 ;; Keywords: extensions, internal
 
-;; This file is not part of GNU Emacs but is distributed under
-;; the same conditions as GNU Emacs.
+;; This file is part of GNU Emacs.
 
 ;; GNU Emacs is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 1, or (at your option)
+;; the Free Software Foundation; either version 2, or (at your option)
 ;; any later version.
 
 ;; GNU Emacs is distributed in the hope that it will be useful,
 ;; GNU General Public License for more details.
 
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING.  If not, write to
-;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
-
-;; This is a new backquote for GNU Emacs written by
-;; Rick Sladkey <jrs@world.std.com>.  It has the following
-;; features compared to the version 18 backquote:
-
-;; Correctly handles nested backquotes.
-;; Correctly handles constants after a splice.
-;; Correctly handles top-level atoms and unquotes.
-;; Correctly handles unquote after dot.
-;; Understands vectors.
-;; Minimizes gratuitous consing.
-;; Faster operation with simpler semantics.
-;; Generates faster run-time expressions.
-;; One third fewer calories than our regular beer.
-
-;; This backquote will generate calls to the list* form.
+;; along with GNU Emacs; see the file COPYING.  If not, write to the
+;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+;; Boston, MA 02110-1301, USA.
+
+;;; Commentary:
+
+;; When the Lisp reader sees `(...), it generates (\` (...)).
+;; When it sees ,... inside such a backquote form, it generates (\, ...).
+;; For ,@... it generates (\,@ ...).
+
+;; This backquote will generate calls to the backquote-list* form.
 ;; Both a function version and a macro version are included.
 ;; The macro version is used by default because it is faster
 ;; and needs no run-time support.  It should really be a subr.
 
 (provide 'backquote)
 
-;; function and macro versions of list*
+;; function and macro versions of backquote-list*
 
-(defun list*-function (first &rest list)
+(defun backquote-list*-function (first &rest list)
   "Like `list' but the last argument is the tail of the new list.
 
-For example (list* 'a 'b 'c) => (a b . c)"
+For example (backquote-list* 'a 'b 'c) => (a b . c)"
+  ;; The recursive solution is much nicer:
+  ;; (if list (cons first (apply 'backquote-list*-function list)) first))
+  ;; but Emacs is not very good at efficiently processing recursion.
   (if list
       (let* ((rest list) (newlist (cons first nil)) (last newlist))
        (while (cdr rest)
@@ -61,11 +58,14 @@ For example (list* 'a 'b 'c) => (a b . c)"
        newlist)
     first))
 
-(defmacro list*-macro (first &rest list)
-  "Like `cons' but accepts more arguments.
+(defmacro backquote-list*-macro (first &rest list)
+  "Like `list' but the last argument is the tail of the new list.
 
-For example (list* 'a 'b 'c) == (cons 'a (cons 'b 'c))"
-  (setq list (reverse (cons first list))
+For example (backquote-list* 'a 'b 'c) => (a b . c)"
+  ;; The recursive solution is much nicer:
+  ;; (if list (list 'cons first (cons 'backquote-list*-macro list)) first))
+  ;; but Emacs is not very good at efficiently processing such things.
+  (setq list (nreverse (cons first list))
        first (car list)
        list (cdr list))
   (if list
@@ -78,20 +78,20 @@ For example (list* 'a 'b 'c) == (cons 'a (cons 'b 'c))"
        newlist)
     first))
 
-(fset 'list* (symbol-function 'list*-macro))
+(defalias 'backquote-list* (symbol-function 'backquote-list*-macro))
 
 ;; A few advertised variables that control which symbols are used
 ;; to represent the backquote, unquote, and splice operations.
+(defconst backquote-backquote-symbol '\`
+  "Symbol used to represent a backquote or nested backquote.")
 
-(defvar backquote-backquote-symbol '`
-  "*Symbol used to represent a backquote or nested backquote (e.g. `).")
-
-(defvar backquote-unquote-symbol ',
-  "*Symbol used to represent an unquote (e.g. ,) inside a backquote.")
+(defconst backquote-unquote-symbol ',
+  "Symbol used to represent an unquote inside a backquote.")
 
-(defvar backquote-splice-symbol ',@
-  "*Symbol used to represent a splice (e.g. ,@) inside a backquote.")
+(defconst backquote-splice-symbol ',@
+  "Symbol used to represent a splice inside a backquote.")
 
+;;;###autoload
 (defmacro backquote (arg)
   "Argument STRUCTURE describes a template to build.
 
@@ -100,33 +100,33 @@ places where expressions are evaluated and inserted or spliced in.
 
 For example:
 
-b                 => (ba bb bc)                ; assume b has this value
-\(` (a b c))       => (a b c)          ; backquote acts like quote
-\(` (a (, b) c))   => (a (ba bb bc) c) ; insert the value of b
-\(` (a (,@ b) c))  => (a ba bb bc c)   ; splice in the value of b
-
-Vectors work just like lists.  Nested backquotes are permitted.
+b              => (ba bb bc)           ; assume b has this value
+`(a b c)       => (a b c)              ; backquote acts like quote
+`(a ,b c)      => (a (ba bb bc) c)     ; insert the value of b
+`(a ,@b c)     => (a ba bb bc c)       ; splice in the value of b
 
-Variables: backquote-backquote-symbol, backquote-unquote-symbol,
-backquote-splice-symbol"
-  (cdr (bq-process arg)))
+Vectors work just like lists.  Nested backquotes are permitted."
+  (cdr (backquote-process arg)))
 
 ;; GNU Emacs has no reader macros
 
-(fset backquote-backquote-symbol (symbol-function 'backquote))
+;;;###autoload
+(defalias '\` (symbol-function 'backquote))
 
-;; bq-process returns a dotted-pair of a tag (0, 1, or 2) and
+;; backquote-process returns a dotted-pair of a tag (0, 1, or 2) and
 ;; the backquote-processed structure.  0 => the structure is
 ;; constant, 1 => to be unquoted, 2 => to be spliced in.
 ;; The top-level backquote macro just discards the tag.
 
-(defun bq-process (s)
+(defun backquote-process (s)
   (cond
    ((vectorp s)
-    (let ((n (bq-process (append s ()))))
+    (let ((n (backquote-process (append s ()))))
       (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)
@@ -142,44 +142,61 @@ backquote-splice-symbol"
    ((eq (car s) backquote-splice-symbol)
     (cons 2 (nth 1 s)))
    ((eq (car s) backquote-backquote-symbol)
-    (bq-process (cdr (bq-process (nth 1 s)))))
+    (backquote-process (cdr (backquote-process (nth 1 s)))))
    (t
-    (let ((rest s) (item nil) (firstlist nil) (list nil) (lists nil))
+    (let ((rest s)
+         item firstlist list lists expression)
+      ;; Scan this list-level, setting LISTS to a list of forms,
+      ;; each of which produces a list of elements
+      ;; that should go in this level.
+      ;; The order of LISTS is backwards.
+      ;; If there are non-splicing elements (constant or variable)
+      ;; at the beginning, put them in FIRSTLIST,
+      ;; as a list of tagged values (TAG . FORM).
+      ;; If there are any at the end, they go in LIST, likewise.
       (while (consp rest)
+       ;; Turn . (, foo) into (,@ foo).
        (if (eq (car rest) backquote-unquote-symbol)
            (setq rest (list (list backquote-splice-symbol (nth 1 rest)))))
-       (setq item (bq-process (car rest)))
+       (setq item (backquote-process (car rest)))
        (cond
         ((= (car item) 2)
-         (if (null firstlist)
+         ;; Put the nonspliced items before the first spliced item
+         ;; into FIRSTLIST.
+         (if (null lists)
              (setq firstlist list
                    list nil))
+         ;; Otherwise, put any preceding nonspliced items into LISTS.
          (if list
-             (setq lists (cons (bq-listify list '(0 . nil)) lists)))
+             (setq lists (cons (backquote-listify list '(0 . nil)) lists)))
          (setq lists (cons (cdr item) lists))
          (setq list nil))
         (t
          (setq list (cons item list))))
        (setq rest (cdr rest)))
+      ;; Handle nonsplicing final elements, and the tail of the list
+      ;; (which remains in REST).
       (if (or rest list)
-         (setq lists (cons (bq-listify list (bq-process rest)) lists)))
-      (setq lists
+         (setq lists (cons (backquote-listify list (backquote-process rest))
+                           lists)))
+      ;; Turn LISTS into a form that produces the combined list.
+      (setq expression
            (if (or (cdr lists)
-                   (and (consp (car lists))
-                        (eq (car (car lists)) backquote-splice-symbol)))
+                   (eq (car-safe (car lists)) backquote-splice-symbol))
                (cons 'append (nreverse lists))
              (car lists)))
+      ;; Tack on any initial elements.
       (if firstlist
-         (setq lists (bq-listify firstlist (cons 1 lists))))
-      (if (eq (car lists) 'quote)
+         (setq expression (backquote-listify firstlist (cons 1 expression))))
+      (if (eq (car-safe expression) 'quote)
          (cons 0 (list 'quote s))
-       (cons 1 lists))))))
+       (cons 1 expression))))))
 
-;; bq-listify takes (tag . structure) pairs from bq-process
-;; and decides between append, list, list*, and cons depending
+;; backquote-listify takes (tag . structure) pairs from backquote-process
+;; and decides between append, list, backquote-list*, and cons depending
 ;; on which tags are in the list.
 
-(defun bq-listify (list old-tail)
+(defun backquote-listify (list old-tail)
   (let ((heads nil) (tail (cdr old-tail)) (list-tail list) (item nil))
     (if (= (car old-tail) 0)
        (setq tail (eval tail)
@@ -199,9 +216,10 @@ backquote-splice-symbol"
                               (and (consp (car heads))
                                    (eq (car (car heads))
                                        backquote-splice-symbol)))))
-           (cons (if use-list* 'list* 'cons)
+           (cons (if use-list* 'backquote-list* 'cons)
                  (append heads (list tail))))
        tail))
      (t (cons 'list heads)))))
 
-;; backquote.el ends here
+;;; arch-tag: 1a26206a-6b5e-4c56-8e24-2eef0f7e0e7a
+;;; backquote.el ends here