home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / info / cl-2 (.txt) < prev    next >
GNU Info File  |  1996-09-28  |  44KB  |  789 lines

  1. This is Info file ../info/cl, produced by Makeinfo-1.55 from the input
  2. file cl.texi.
  3.    This file documents the GNU Emacs Common Lisp emulation package.
  4.    Copyright (C) 1993 Free Software Foundation, Inc.
  5.    Permission is granted to make and distribute verbatim copies of this
  6. manual provided the copyright notice and this permission notice are
  7. preserved on all copies.
  8.    Permission is granted to copy and distribute modified versions of
  9. this manual under the conditions for verbatim copying, provided also
  10. that the section entitled "GNU General Public License" is included
  11. exactly as in the original, and provided that the entire resulting
  12. derived work is distributed under the terms of a permission notice
  13. identical to this one.
  14.    Permission is granted to copy and distribute translations of this
  15. manual into another language, under the above conditions for modified
  16. versions, except that the section entitled "GNU General Public License"
  17. may be included in a translation approved by the author instead of in
  18. the original English.
  19. File: cl,  Node: Modify Macros,  Next: Customizing Setf,  Prev: Basic Setf,  Up: Generalized Variables
  20. Modify Macros
  21. -------------
  22. This package defines a number of other macros besides `setf' that
  23. operate on generalized variables.  Many are interesting and useful even
  24. when the PLACE is just a variable name.
  25.  - Special Form: psetf [PLACE FORM]...
  26.      This macro is to `setf' what `psetq' is to `setq': When several
  27.      PLACEs and FORMs are involved, the assignments take place in
  28.      parallel rather than sequentially.  Specifically, all subforms are
  29.      evaluated from left to right, then all the assignments are done
  30.      (in an undefined order).
  31.  - Special Form: incf PLACE &optional X
  32.      This macro increments the number stored in PLACE by one, or by X
  33.      if specified.  The incremented value is returned.  For example,
  34.      `(incf i)' is equivalent to `(setq i (1+ i))', and `(incf (car x)
  35.      2)' is equivalent to `(setcar x (+ (car x) 2))'.
  36.      Once again, care is taken to preserve the "apparent" order of
  37.      evaluation.  For example,
  38.           (incf (aref vec (incf i)))
  39.      appears to increment `i' once, then increment the element of `vec'
  40.      addressed by `i'; this is indeed exactly what it does, which means
  41.      the above form is *not* equivalent to the "obvious" expansion,
  42.           (setf (aref vec (incf i)) (1+ (aref vec (incf i))))   ; Wrong!
  43.      but rather to something more like
  44.           (let ((temp (incf i)))
  45.             (setf (aref vec temp) (1+ (aref vec temp))))
  46.      Again, all of this is taken care of automatically by `incf' and
  47.      the other generalized-variable macros.
  48.      As a more Emacs-specific example of `incf', the expression `(incf
  49.      (point) N)' is essentially equivalent to `(forward-char N)'.
  50.  - Special Form: decf PLACE &optional X
  51.      This macro decrements the number stored in PLACE by one, or by X
  52.      if specified.
  53.  - Special Form: pop PLACE
  54.      This macro removes and returns the first element of the list stored
  55.      in PLACE.  It is analogous to `(prog1 (car PLACE) (setf PLACE (cdr
  56.      PLACE)))', except that it takes care to evaluate all subforms only
  57.      once.
  58.  - Special Form: push X PLACE
  59.      This macro inserts X at the front of the list stored in PLACE.  It
  60.      is analogous to `(setf PLACE (cons X PLACE))', except for
  61.      evaluation of the subforms.
  62.  - Special Form: pushnew X PLACE &key :test :test-not :key
  63.      This macro inserts X at the front of the list stored in PLACE, but
  64.      only if X was not `eql' to any existing element of the list.  The
  65.      optional keyword arguments are interpreted in the same way as for
  66.      `adjoin'.  *Note Lists as Sets::.
  67.  - Special Form: shiftf PLACE... NEWVALUE
  68.      This macro shifts the PLACEs left by one, shifting in the value of
  69.      NEWVALUE (which may be any Lisp expression, not just a generalized
  70.      variable), and returning the value shifted out of the first PLACE.
  71.      Thus, `(shiftf A B C D)' is equivalent to
  72.           (prog1
  73.               A
  74.             (psetf A B
  75.                    B C
  76.                    C D))
  77.      except that the subforms of A, B, and C are actually evaluated
  78.      only once each and in the apparent order.
  79.  - Special Form: rotatef PLACE...
  80.      This macro rotates the PLACEs left by one in circular fashion.
  81.      Thus, `(rotatef A B C D)' is equivalent to
  82.           (psetf A B
  83.                  B C
  84.                  C D
  85.                  D A)
  86.      except for the evaluation of subforms.  `rotatef' always returns
  87.      `nil'.  Note that `(rotatef A B)' conveniently exchanges A and B.
  88.    The following macros were invented for this package; they have no
  89. analogues in Common Lisp.
  90.  - Special Form: letf (BINDINGS...) FORMS...
  91.      This macro is analogous to `let', but for generalized variables
  92.      rather than just symbols.  Each BINDING should be of the form
  93.      `(PLACE VALUE)'; the original contents of the PLACEs are saved,
  94.      the VALUEs are stored in them, and then the body FORMs are
  95.      executed.  Afterwards, the PLACES are set back to their original
  96.      saved contents.  This cleanup happens even if the FORMs exit
  97.      irregularly due to a `throw' or an error.
  98.      For example,
  99.           (letf (((point) (point-min))
  100.                  (a 17))
  101.             ...)
  102.      moves "point" in the current buffer to the beginning of the buffer,
  103.      and also binds `a' to 17 (as if by a normal `let', since `a' is
  104.      just a regular variable).  After the body exits, `a' is set back
  105.      to its original value and point is moved back to its original
  106.      position.
  107.      Note that `letf' on `(point)' is not quite like a
  108.      `save-excursion', as the latter effectively saves a marker which
  109.      tracks insertions and deletions in the buffer.  Actually, a `letf'
  110.      of `(point-marker)' is much closer to this behavior.  (`point' and
  111.      `point-marker' are equivalent as `setf' places; each will accept
  112.      either an integer or a marker as the stored value.)
  113.      Since generalized variables look like lists, `let''s shorthand of
  114.      using `foo' for `(foo nil)' as a BINDING would be ambiguous in
  115.      `letf' and is not allowed.
  116.      However, a BINDING specifier may be a one-element list `(PLACE)',
  117.      which is similar to `(PLACE PLACE)'.  In other words, the PLACE is
  118.      not disturbed on entry to the body, and the only effect of the
  119.      `letf' is to restore the original value of PLACE afterwards.  (The
  120.      redundant access-and-store suggested by the `(PLACE PLACE)'
  121.      example does not actually occur.)
  122.      In most cases, the PLACE must have a well-defined value on entry
  123.      to the `letf' form.  The only exceptions are plain variables and
  124.      calls to `symbol-value' and `symbol-function'.  If the symbol is
  125.      not bound on entry, it is simply made unbound by `makunbound' or
  126.      `fmakunbound' on exit.
  127.  - Special Form: letf* (BINDINGS...) FORMS...
  128.      This macro is to `letf' what `let*' is to `let': It does the
  129.      bindings in sequential rather than parallel order.
  130.  - Special Form: callf FUNCTION PLACE ARGS...
  131.      This is the "generic" modify macro.  It calls FUNCTION, which
  132.      should be an unquoted function name, macro name, or lambda.  It
  133.      passes PLACE and ARGS as arguments, and assigns the result back to
  134.      PLACE.  For example, `(incf PLACE N)' is the same as `(callf +
  135.      PLACE N)'.  Some more examples:
  136.           (callf abs my-number)
  137.           (callf concat (buffer-name) "<" (int-to-string n) ">")
  138.           (callf union happy-people (list joe bob) :test 'same-person)
  139.      *Note Customizing Setf::, for `define-modify-macro', a way to
  140.      create even more concise notations for modify macros.  Note again
  141.      that `callf' is an extension to standard Common Lisp.
  142.  - Special Form: callf2 FUNCTION ARG1 PLACE ARGS...
  143.      This macro is like `callf', except that PLACE is the *second*
  144.      argument of FUNCTION rather than the first.  For example, `(push X
  145.      PLACE)' is equivalent to `(callf2 cons X PLACE)'.
  146.    The `callf' and `callf2' macros serve as building blocks for other
  147. macros like `incf', `pushnew', and `define-modify-macro'.  The `letf'
  148. and `letf*' macros are used in the processing of symbol macros; *note
  149. Macro Bindings::..
  150. File: cl,  Node: Customizing Setf,  Prev: Modify Macros,  Up: Generalized Variables
  151. Customizing Setf
  152. ----------------
  153. Common Lisp defines three macros, `define-modify-macro', `defsetf', and
  154. `define-setf-method', that allow the user to extend generalized
  155. variables in various ways.
  156.  - Special Form: define-modify-macro NAME ARGLIST FUNCTION [DOC-STRING]
  157.      This macro defines a "read-modify-write" macro similar to `incf'
  158.      and `decf'.  The macro NAME is defined to take a PLACE argument
  159.      followed by additional arguments described by ARGLIST.  The call
  160.           (NAME PLACE ARGS...)
  161.      will be expanded to
  162.           (callf FUNC PLACE ARGS...)
  163.      which in turn is roughly equivalent to
  164.           (setf PLACE (FUNC PLACE ARGS...))
  165.      For example:
  166.           (define-modify-macro incf (&optional (n 1)) +)
  167.           (define-modify-macro concatf (&rest args) concat)
  168.      Note that `&key' is not allowed in ARGLIST, but `&rest' is
  169.      sufficient to pass keywords on to the function.
  170.      Most of the modify macros defined by Common Lisp do not exactly
  171.      follow the pattern of `define-modify-macro'.  For example, `push'
  172.      takes its arguments in the wrong order, and `pop' is completely
  173.      irregular.  You can define these macros "by hand" using
  174.      `get-setf-method', or consult the source file `cl-macs.el' to see
  175.      how to use the internal `setf' building blocks.
  176.  - Special Form: defsetf ACCESS-FN UPDATE-FN
  177.      This is the simpler of two `defsetf' forms.  Where ACCESS-FN is
  178.      the name of a function which accesses a place, this declares
  179.      UPDATE-FN to be the corresponding store function.  From now on,
  180.           (setf (ACCESS-FN ARG1 ARG2 ARG3) VALUE)
  181.      will be expanded to
  182.           (UPDATE-FN ARG1 ARG2 ARG3 VALUE)
  183.      The UPDATE-FN is required to be either a true function, or a macro
  184.      which evaluates its arguments in a function-like way.  Also, the
  185.      UPDATE-FN is expected to return VALUE as its result.  Otherwise,
  186.      the above expansion would not obey the rules for the way `setf' is
  187.      supposed to behave.
  188.      As a special (non-Common-Lisp) extension, a third argument of `t'
  189.      to `defsetf' says that the `update-fn''s return value is not
  190.      suitable, so that the above `setf' should be expanded to something
  191.      more like
  192.           (let ((temp VALUE))
  193.             (UPDATE-FN ARG1 ARG2 ARG3 temp)
  194.             temp)
  195.      Some examples of the use of `defsetf', drawn from the standard
  196.      suite of setf methods, are:
  197.           (defsetf car setcar)
  198.           (defsetf symbol-value set)
  199.           (defsetf buffer-name rename-buffer t)
  200.  - Special Form: defsetf ACCESS-FN ARGLIST (STORE-VAR) FORMS...
  201.      This is the second, more complex, form of `defsetf'.  It is rather
  202.      like `defmacro' except for the additional STORE-VAR argument.  The
  203.      FORMS should return a Lisp form which stores the value of
  204.      STORE-VAR into the generalized variable formed by a call to
  205.      ACCESS-FN with arguments described by ARGLIST.  The FORMS may
  206.      begin with a string which documents the `setf' method (analogous
  207.      to the doc string that appears at the front of a function).
  208.      For example, the simple form of `defsetf' is shorthand for
  209.           (defsetf ACCESS-FN (&rest args) (store)
  210.             (append '(UPDATE-FN) args (list store)))
  211.      The Lisp form that is returned can access the arguments from
  212.      ARGLIST and STORE-VAR in an unrestricted fashion; macros like
  213.      `setf' and `incf' which invoke this setf-method will insert
  214.      temporary variables as needed to make sure the apparent order of
  215.      evaluation is preserved.
  216.      Another example drawn from the standard package:
  217.           (defsetf nth (n x) (store)
  218.             (list 'setcar (list 'nthcdr n x) store))
  219.  - Special Form: define-setf-method ACCESS-FN ARGLIST FORMS...
  220.      This is the most general way to create new place forms.  When a
  221.      `setf' to ACCESS-FN with arguments described by ARGLIST is
  222.      expanded, the FORMS are evaluated and must return a list of five
  223.      items:
  224.        1. A list of "temporary variables".
  225.        2. A list of "value forms" corresponding to the temporary
  226.           variables above.  The temporary variables will be bound to
  227.           these value forms as the first step of any operation on the
  228.           generalized variable.
  229.        3. A list of exactly one "store variable" (generally obtained
  230.           from a call to `gensym').
  231.        4. A Lisp form which stores the contents of the store variable
  232.           into the generalized variable, assuming the temporaries have
  233.           been bound as described above.
  234.        5. A Lisp form which accesses the contents of the generalized
  235.           variable, assuming the temporaries have been bound.
  236.      This is exactly like the Common Lisp macro of the same name,
  237.      except that the method returns a list of five values rather than
  238.      the five values themselves, since Emacs Lisp does not support
  239.      Common Lisp's notion of multiple return values.
  240.      Once again, the FORMS may begin with a documentation string.
  241.      A setf-method should be maximally conservative with regard to
  242.      temporary variables.  In the setf-methods generated by `defsetf',
  243.      the second return value is simply the list of arguments in the
  244.      place form, and the first return value is a list of a
  245.      corresponding number of temporary variables generated by `gensym'.
  246.      Macros like `setf' and `incf' which use this setf-method will
  247.      optimize away most temporaries that turn out to be unnecessary, so
  248.      there is little reason for the setf-method itself to optimize.
  249.  - Function: get-setf-method PLACE &optional ENV
  250.      This function returns the setf-method for PLACE, by invoking the
  251.      definition previously recorded by `defsetf' or
  252.      `define-setf-method'.  The result is a list of five values as
  253.      described above.  You can use this function to build your own
  254.      `incf'-like modify macros.  (Actually, it is better to use the
  255.      internal functions `cl-setf-do-modify' and `cl-setf-do-store',
  256.      which are a bit easier to use and which also do a number of
  257.      optimizations; consult the source code for the `incf' function for
  258.      a simple example.)
  259.      The argument ENV specifies the "environment" to be passed on to
  260.      `macroexpand' if `get-setf-method' should need to expand a macro
  261.      in PLACE.  It should come from an `&environment' argument to the
  262.      macro or setf-method that called `get-setf-method'.
  263.      See also the source code for the setf-methods for `apply' and
  264.      `substring', each of which works by calling `get-setf-method' on a
  265.      simpler case, then massaging the result in various ways.
  266.    Modern Common Lisp defines a second, independent way to specify the
  267. `setf' behavior of a function, namely "`setf' functions" whose names
  268. are lists `(setf NAME)' rather than symbols.  For example, `(defun
  269. (setf foo) ...)' defines the function that is used when `setf' is
  270. applied to `foo'.  This package does not currently support `setf'
  271. functions.  In particular, it is a compile-time error to use `setf' on
  272. a form which has not already been `defsetf''d or otherwise declared; in
  273. newer Common Lisps, this would not be an error since the function
  274. `(setf FUNC)' might be defined later.
  275. File: cl,  Node: Variable Bindings,  Next: Conditionals,  Prev: Generalized Variables,  Up: Control Structure
  276. Variable Bindings
  277. =================
  278. These Lisp forms make bindings to variables and function names,
  279. analogous to Lisp's built-in `let' form.
  280.    *Note Modify Macros::, for the `letf' and `letf*' forms which are
  281. also related to variable bindings.
  282. * Menu:
  283. * Dynamic Bindings::     The `progv' form
  284. * Lexical Bindings::     `lexical-let' and lexical closures
  285. * Function Bindings::    `flet' and `labels'
  286. * Macro Bindings::       `macrolet' and `symbol-macrolet'
  287. File: cl,  Node: Dynamic Bindings,  Next: Lexical Bindings,  Prev: Variable Bindings,  Up: Variable Bindings
  288. Dynamic Bindings
  289. ----------------
  290. The standard `let' form binds variables whose names are known at
  291. compile-time.  The `progv' form provides an easy way to bind variables
  292. whose names are computed at run-time.
  293.  - Special Form: progv SYMBOLS VALUES FORMS...
  294.      This form establishes `let'-style variable bindings on a set of
  295.      variables computed at run-time.  The expressions SYMBOLS and
  296.      VALUES are evaluated, and must return lists of symbols and values,
  297.      respectively.  The symbols are bound to the corresponding values
  298.      for the duration of the body FORMs.  If VALUES is shorter than
  299.      SYMBOLS, the last few symbols are made unbound (as if by
  300.      `makunbound') inside the body.  If SYMBOLS is shorter than VALUES,
  301.      the excess values are ignored.
  302. File: cl,  Node: Lexical Bindings,  Next: Function Bindings,  Prev: Dynamic Bindings,  Up: Variable Bindings
  303. Lexical Bindings
  304. ----------------
  305. The "CL" package defines the following macro which more closely follows
  306. the Common Lisp `let' form:
  307.  - Special Form: lexical-let (BINDINGS...) FORMS...
  308.      This form is exactly like `let' except that the bindings it
  309.      establishes are purely lexical.  Lexical bindings are similar to
  310.      local variables in a language like C:  Only the code physically
  311.      within the body of the `lexical-let' (after macro expansion) may
  312.      refer to the bound variables.
  313.           (setq a 5)
  314.           (defun foo (b) (+ a b))
  315.           (let ((a 2)) (foo a))
  316.                => 4
  317.           (lexical-let ((a 2)) (foo a))
  318.                => 7
  319.      In this example, a regular `let' binding of `a' actually makes a
  320.      temporary change to the global variable `a', so `foo' is able to
  321.      see the binding of `a' to 2.  But `lexical-let' actually creates a
  322.      distinct local variable `a' for use within its body, without any
  323.      effect on the global variable of the same name.
  324.      The most important use of lexical bindings is to create "closures".
  325.      A closure is a function object that refers to an outside lexical
  326.      variable.  For example:
  327.           (defun make-adder (n)
  328.             (lexical-let ((n n))
  329.               (function (lambda (m) (+ n m)))))
  330.           (setq add17 (make-adder 17))
  331.           (funcall add17 4)
  332.                => 21
  333.      The call `(make-adder 17)' returns a function object which adds 17
  334.      to its argument.  If `let' had been used instead of `lexical-let',
  335.      the function object would have referred to the global `n', which
  336.      would have been bound to 17 only during the call to `make-adder'
  337.      itself.
  338.           (defun make-counter ()
  339.             (lexical-let ((n 0))
  340.               (function* (lambda (&optional (m 1)) (incf n m)))))
  341.           (setq count-1 (make-counter))
  342.           (funcall count-1 3)
  343.                => 3
  344.           (funcall count-1 14)
  345.                => 17
  346.           (setq count-2 (make-counter))
  347.           (funcall count-2 5)
  348.                => 5
  349.           (funcall count-1 2)
  350.                => 19
  351.           (funcall count-2)
  352.                => 6
  353.      Here we see that each call to `make-counter' creates a distinct
  354.      local variable `n', which serves as a private counter for the
  355.      function object that is returned.
  356.      Closed-over lexical variables persist until the last reference to
  357.      them goes away, just like all other Lisp objects.  For example,
  358.      `count-2' refers to a function object which refers to an instance
  359.      of the variable `n'; this is the only reference to that variable,
  360.      so after `(setq count-2 nil)' the garbage collector would be able
  361.      to delete this instance of `n'.  Of course, if a `lexical-let'
  362.      does not actually create any closures, then the lexical variables
  363.      are free as soon as the `lexical-let' returns.
  364.      Many closures are used only during the extent of the bindings they
  365.      refer to; these are known as "downward funargs" in Lisp parlance.
  366.      When a closure is used in this way, regular Emacs Lisp dynamic
  367.      bindings suffice and will be more efficient than `lexical-let'
  368.      closures:
  369.           (defun add-to-list (x list)
  370.             (mapcar (function (lambda (y) (+ x y))) list))
  371.           (add-to-list 7 '(1 2 5))
  372.                => (8 9 12)
  373.      Since this lambda is only used while `x' is still bound, it is not
  374.      necessary to make a true closure out of it.
  375.      You can use `defun' or `flet' inside a `lexical-let' to create a
  376.      named closure.  If several closures are created in the body of a
  377.      single `lexical-let', they all close over the same instance of the
  378.      lexical variable.
  379.      The `lexical-let' form is an extension to Common Lisp.  In true
  380.      Common Lisp, all bindings are lexical unless declared otherwise.
  381.  - Special Form: lexical-let* (BINDINGS...) FORMS...
  382.      This form is just like `lexical-let', except that the bindings are
  383.      made sequentially in the manner of `let*'.
  384. File: cl,  Node: Function Bindings,  Next: Macro Bindings,  Prev: Lexical Bindings,  Up: Variable Bindings
  385. Function Bindings
  386. -----------------
  387. These forms make `let'-like bindings to functions instead of variables.
  388.  - Special Form: flet (BINDINGS...) FORMS...
  389.      This form establishes `let'-style bindings on the function cells
  390.      of symbols rather than on the value cells.  Each BINDING must be a
  391.      list of the form `(NAME ARGLIST FORMS...)', which defines a
  392.      function exactly as if it were a `defun*' form.  The function NAME
  393.      is defined accordingly for the duration of the body of the `flet';
  394.      then the old function definition, or lack thereof, is restored.
  395.      While `flet' in Common Lisp establishes a lexical binding of NAME,
  396.      Emacs Lisp `flet' makes a dynamic binding.  The result is that
  397.      `flet' affects indirect calls to a function as well as calls
  398.      directly inside the `flet' form itself.
  399.      You can use `flet' to disable or modify the behavior of a function
  400.      in a temporary fashion.  This will even work on Emacs primitives,
  401.      although note that some calls to primitive functions internal to
  402.      Emacs are made without going through the symbol's function cell,
  403.      and so will not be affected by `flet'.  For example,
  404.           (flet ((message (&rest args) (push args saved-msgs)))
  405.             (do-something))
  406.      This code attempts to replace the built-in function `message' with
  407.      a function that simply saves the messages in a list rather than
  408.      displaying them.  The original definition of `message' will be
  409.      restored after `do-something' exits.  This code will work fine on
  410.      messages generated by other Lisp code, but messages generated
  411.      directly inside Emacs will not be caught since they make direct
  412.      C-language calls to the message routines rather than going through
  413.      the Lisp `message' function.
  414.      Functions defined by `flet' may use the full Common Lisp argument
  415.      notation supported by `defun*'; also, the function body is
  416.      enclosed in an implicit block as if by `defun*'.  *Note Program
  417.      Structure::.
  418.  - Special Form: labels (BINDINGS...) FORMS...
  419.      The `labels' form is a synonym for `flet'.  (In Common Lisp,
  420.      `labels' and `flet' differ in ways that depend on their lexical
  421.      scoping; these distinctions vanish in dynamically scoped Emacs
  422.      Lisp.)
  423. File: cl,  Node: Macro Bindings,  Prev: Function Bindings,  Up: Variable Bindings
  424. Macro Bindings
  425. --------------
  426. These forms create local macros and "symbol macros."
  427.  - Special Form: macrolet (BINDINGS...) FORMS...
  428.      This form is analogous to `flet', but for macros instead of
  429.      functions.  Each BINDING is a list of the same form as the
  430.      arguments to `defmacro*' (i.e., a macro name, argument list, and
  431.      macro-expander forms).  The macro is defined accordingly for use
  432.      within the body of the `macrolet'.
  433.      Because of the nature of macros, `macrolet' is lexically scoped
  434.      even in Emacs Lisp:  The `macrolet' binding will affect only calls
  435.      that appear physically within the body FORMS, possibly after
  436.      expansion of other macros in the body.
  437.  - Special Form: symbol-macrolet (BINDINGS...) FORMS...
  438.      This form creates "symbol macros", which are macros that look like
  439.      variable references rather than function calls.  Each BINDING is a
  440.      list `(VAR EXPANSION)'; any reference to VAR within the body FORMS
  441.      is replaced by EXPANSION.
  442.           (setq bar '(5 . 9))
  443.           (symbol-macrolet ((foo (car bar)))
  444.             (incf foo))
  445.           bar
  446.                => (6 . 9)
  447.      A `setq' of a symbol macro is treated the same as a `setf'.  I.e.,
  448.      `(setq foo 4)' in the above would be equivalent to `(setf foo 4)',
  449.      which in turn expands to `(setf (car bar) 4)'.
  450.      Likewise, a `let' or `let*' binding a symbol macro is treated like
  451.      a `letf' or `letf*'.  This differs from true Common Lisp, where
  452.      the rules of lexical scoping cause a `let' binding to shadow a
  453.      `symbol-macrolet' binding.  In this package, only `lexical-let'
  454.      and `lexical-let*' will shadow a symbol macro.
  455.      There is no analogue of `defmacro' for symbol macros; all symbol
  456.      macros are local.  A typical use of `symbol-macrolet' is in the
  457.      expansion of another macro:
  458.           (defmacro* my-dolist ((x list) &rest body)
  459.             (let ((var (gensym)))
  460.               (list 'loop 'for var 'on list 'do
  461.                     (list* 'symbol-macrolet (list (list x (list 'car var)))
  462.                            body))))
  463.           
  464.           (setq mylist '(1 2 3 4))
  465.           (my-dolist (x mylist) (incf x))
  466.           mylist
  467.                => (2 3 4 5)
  468.      In this example, the `my-dolist' macro is similar to `dolist'
  469.      (*note Iteration::.) except that the variable `x' becomes a true
  470.      reference onto the elements of the list.  The `my-dolist' call
  471.      shown here expands to
  472.           (loop for G1234 on mylist do
  473.                 (symbol-macrolet ((x (car G1234)))
  474.                   (incf x)))
  475.      which in turn expands to
  476.           (loop for G1234 on mylist do (incf (car G1234)))
  477.      *Note Loop Facility::, for a description of the `loop' macro.
  478.      This package defines a nonstandard `in-ref' loop clause that works
  479.      much like `my-dolist'.
  480. File: cl,  Node: Conditionals,  Next: Blocks and Exits,  Prev: Variable Bindings,  Up: Control Structure
  481. Conditionals
  482. ============
  483. These conditional forms augment Emacs Lisp's simple `if', `and', `or',
  484. and `cond' forms.
  485.  - Special Form: when TEST FORMS...
  486.      This is a variant of `if' where there are no "else" forms, and
  487.      possibly several "then" forms.  In particular,
  488.           (when TEST A B C)
  489.      is entirely equivalent to
  490.           (if TEST (progn A B C) nil)
  491.  - Special Form: unless TEST FORMS...
  492.      This is a variant of `if' where there are no "then" forms, and
  493.      possibly several "else" forms:
  494.           (unless TEST A B C)
  495.      is entirely equivalent to
  496.           (when (not TEST) A B C)
  497.  - Special Form: case KEYFORM CLAUSE...
  498.      This macro evaluates KEYFORM, then compares it with the key values
  499.      listed in the various CLAUSEs.  Whichever clause matches the key
  500.      is executed; comparison is done by `eql'.  If no clause matches,
  501.      the `case' form returns `nil'.  The clauses are of the form
  502.           (KEYLIST BODY-FORMS...)
  503.      where KEYLIST is a list of key values.  If there is exactly one
  504.      value, and it is not a cons cell or the symbol `nil' or `t', then
  505.      it can be used by itself as a KEYLIST without being enclosed in a
  506.      list.  All key values in the `case' form must be distinct.  The
  507.      final clauses may use `t' in place of a KEYLIST to indicate a
  508.      default clause that should be taken if none of the other clauses
  509.      match.  (The symbol `otherwise' is also recognized in place of
  510.      `t'.  To make a clause that matches the actual symbol `t', `nil',
  511.      or `otherwise', enclose the symbol in a list.)
  512.      For example, this expression reads a keystroke, then does one of
  513.      four things depending on whether it is an `a', a `b', a RET or
  514.      LFD, or anything else.
  515.           (case (read-char)
  516.             (?a (do-a-thing))
  517.             (?b (do-b-thing))
  518.             ((?\r ?\n) (do-ret-thing))
  519.             (t (do-other-thing)))
  520.  - Special Form: ecase KEYFORM CLAUSE...
  521.      This macro is just like `case', except that if the key does not
  522.      match any of the clauses, an error is signalled rather than simply
  523.      returning `nil'.
  524.  - Special Form: typecase KEYFORM CLAUSE...
  525.      This macro is a version of `case' that checks for types rather
  526.      than values.  Each CLAUSE is of the form `(TYPE BODY...)'.  *Note
  527.      Type Predicates::, for a description of type specifiers.  For
  528.      example,
  529.           (typecase x
  530.             (integer (munch-integer x))
  531.             (float (munch-float x))
  532.             (string (munch-integer (string-to-int x)))
  533.             (t (munch-anything x)))
  534.      The type specifier `t' matches any type of object; the word
  535.      `otherwise' is also allowed.  To make one clause match any of
  536.      several types, use an `(or ...)' type specifier.
  537.  - Special Form: etypecase KEYFORM CLAUSE...
  538.      This macro is just like `typecase', except that if the key does
  539.      not match any of the clauses, an error is signalled rather than
  540.      simply returning `nil'.
  541. File: cl,  Node: Blocks and Exits,  Next: Iteration,  Prev: Conditionals,  Up: Control Structure
  542. Blocks and Exits
  543. ================
  544. Common Lisp "blocks" provide a non-local exit mechanism very similar to
  545. `catch' and `throw', but lexically rather than dynamically scoped.
  546. This package actually implements `block' in terms of `catch'; however,
  547. the lexical scoping allows the optimizing byte-compiler to omit the
  548. costly `catch' step if the body of the block does not actually
  549. `return-from' the block.
  550.  - Special Form: block NAME FORMS...
  551.      The FORMS are evaluated as if by a `progn'.  However, if any of
  552.      the FORMS execute `(return-from NAME)', they will jump out and
  553.      return directly from the `block' form.  The `block' returns the
  554.      result of the last FORM unless a `return-from' occurs.
  555.      The `block'/`return-from' mechanism is quite similar to the
  556.      `catch'/`throw' mechanism.  The main differences are that block
  557.      NAMEs are unevaluated symbols, rather than forms (such as quoted
  558.      symbols) which evaluate to a tag at run-time; and also that blocks
  559.      are lexically scoped whereas `catch'/`throw' are dynamically
  560.      scoped.  This means that functions called from the body of a
  561.      `catch' can also `throw' to the `catch', but the `return-from'
  562.      referring to a block name must appear physically within the FORMS
  563.      that make up the body of the block.  They may not appear within
  564.      other called functions, although they may appear within macro
  565.      expansions or `lambda's in the body.  Block names and `catch'
  566.      names form independent name-spaces.
  567.      In true Common Lisp, `defun' and `defmacro' surround the function
  568.      or expander bodies with implicit blocks with the same name as the
  569.      function or macro.  This does not occur in Emacs Lisp, but this
  570.      package provides `defun*' and `defmacro*' forms which do create
  571.      the implicit block.
  572.      The Common Lisp looping constructs defined by this package, such
  573.      as `loop' and `dolist', also create implicit blocks just as in
  574.      Common Lisp.
  575.      Because they are implemented in terms of Emacs Lisp `catch' and
  576.      `throw', blocks have the same overhead as actual `catch'
  577.      constructs (roughly two function calls).  However, Zawinski and
  578.      Furuseth's optimizing byte compiler (standard in Emacs 19) will
  579.      optimize away the `catch' if the block does not in fact contain
  580.      any `return' or `return-from' calls that jump to it.  This means
  581.      that `do' loops and `defun*' functions which don't use `return'
  582.      don't pay the overhead to support it.
  583.  - Special Form: return-from NAME [RESULT]
  584.      This macro returns from the block named NAME, which must be an
  585.      (unevaluated) symbol.  If a RESULT form is specified, it is
  586.      evaluated to produce the result returned from the `block'.
  587.      Otherwise, `nil' is returned.
  588.  - Special Form: return [RESULT]
  589.      This macro is exactly like `(return-from nil RESULT)'.  Common
  590.      Lisp loops like `do' and `dolist' implicitly enclose themselves in
  591.      `nil' blocks.
  592. File: cl,  Node: Iteration,  Next: Loop Facility,  Prev: Blocks and Exits,  Up: Control Structure
  593. Iteration
  594. =========
  595. The macros described here provide more sophisticated, high-level
  596. looping constructs to complement Emacs Lisp's basic `while' loop.
  597.  - Special Form: loop FORMS...
  598.      The "CL" package supports both the simple, old-style meaning of
  599.      `loop' and the extremely powerful and flexible feature known as
  600.      the "Loop Facility" or "Loop Macro".  This more advanced facility
  601.      is discussed in the following section; *note Loop Facility::..
  602.      The simple form of `loop' is described here.
  603.      If `loop' is followed by zero or more Lisp expressions, then
  604.      `(loop EXPRS...)' simply creates an infinite loop executing the
  605.      expressions over and over.  The loop is enclosed in an implicit
  606.      `nil' block.  Thus,
  607.           (loop (foo)  (if (no-more) (return 72))  (bar))
  608.      is exactly equivalent to
  609.           (block nil (while t (foo)  (if (no-more) (return 72))  (bar)))
  610.      If any of the expressions are plain symbols, the loop is instead
  611.      interpreted as a Loop Macro specification as described later.
  612.      (This is not a restriction in practice, since a plain symbol in
  613.      the above notation would simply access and throw away the value of
  614.      a variable.)
  615.  - Special Form: do (SPEC...) (END-TEST [RESULT...]) FORMS...
  616.      This macro creates a general iterative loop.  Each SPEC is of the
  617.      form
  618.           (VAR [INIT [STEP]])
  619.      The loop works as follows:  First, each VAR is bound to the
  620.      associated INIT value as if by a `let' form.  Then, in each
  621.      iteration of the loop, the END-TEST is evaluated; if true, the
  622.      loop is finished.  Otherwise, the body FORMS are evaluated, then
  623.      each VAR is set to the associated STEP expression (as if by a
  624.      `psetq' form) and the next iteration begins.  Once the END-TEST
  625.      becomes true, the RESULT forms are evaluated (with the VARs still
  626.      bound to their values) to produce the result returned by `do'.
  627.      The entire `do' loop is enclosed in an implicit `nil' block, so
  628.      that you can use `(return)' to break out of the loop at any time.
  629.      If there are no RESULT forms, the loop returns `nil'.  If a given
  630.      VAR has no STEP form, it is bound to its INIT value but not
  631.      otherwise modified during the `do' loop (unless the code
  632.      explicitly modifies it); this case is just a shorthand for putting
  633.      a `(let ((VAR INIT)) ...)' around the loop.  If INIT is also
  634.      omitted it defaults to `nil', and in this case a plain `VAR' can
  635.      be used in place of `(VAR)', again following the analogy with
  636.      `let'.
  637.      This example (from Steele) illustrates a loop which applies the
  638.      function `f' to successive pairs of values from the lists `foo'
  639.      and `bar'; it is equivalent to the call `(mapcar* 'f foo bar)'.
  640.      Note that this loop has no body FORMS at all, performing all its
  641.      work as side effects of the rest of the loop.
  642.           (do ((x foo (cdr x))
  643.                (y bar (cdr y))
  644.                (z nil (cons (f (car x) (car y)) z)))
  645.             ((or (null x) (null y))
  646.              (nreverse z)))
  647.  - Special Form: do* (SPEC...) (END-TEST [RESULT...]) FORMS...
  648.      This is to `do' what `let*' is to `let'.  In particular, the
  649.      initial values are bound as if by `let*' rather than `let', and
  650.      the steps are assigned as if by `setq' rather than `psetq'.
  651.      Here is another way to write the above loop:
  652.           (do* ((xp foo (cdr xp))
  653.                 (yp bar (cdr yp))
  654.                 (x (car xp) (car xp))
  655.                 (y (car yp) (car yp))
  656.                 z)
  657.             ((or (null xp) (null yp))
  658.              (nreverse z))
  659.             (push (f x y) z))
  660.  - Special Form: dolist (VAR LIST [RESULT]) FORMS...
  661.      This is a more specialized loop which iterates across the elements
  662.      of a list.  LIST should evaluate to a list; the body FORMS are
  663.      executed with VAR bound to each element of the list in turn.
  664.      Finally, the RESULT form (or `nil') is evaluated with VAR bound to
  665.      `nil' to produce the result returned by the loop.  The loop is
  666.      surrounded by an implicit `nil' block.
  667.  - Special Form: dotimes (VAR COUNT [RESULT]) FORMS...
  668.      This is a more specialized loop which iterates a specified number
  669.      of times.  The body is executed with VAR bound to the integers
  670.      from zero (inclusive) to COUNT (exclusive), in turn.  Then the
  671.      `result' form is evaluated with VAR bound to the total number of
  672.      iterations that were done (i.e., `(max 0 COUNT)') to get the
  673.      return value for the loop form.  The loop is surrounded by an
  674.      implicit `nil' block.
  675.  - Special Form: do-symbols (VAR [OBARRAY [RESULT]]) FORMS...
  676.      This loop iterates over all interned symbols.  If OBARRAY is
  677.      specified and is not `nil', it loops over all symbols in that
  678.      obarray.  For each symbol, the body FORMS are evaluated with VAR
  679.      bound to that symbol.  The symbols are visited in an unspecified
  680.      order.  Afterward the RESULT form, if any, is evaluated (with VAR
  681.      bound to `nil') to get the return value.  The loop is surrounded
  682.      by an implicit `nil' block.
  683.  - Special Form: do-all-symbols (VAR [RESULT]) FORMS...
  684.      This is identical to `do-symbols' except that the OBARRAY argument
  685.      is omitted; it always iterates over the default obarray.
  686.    *Note Mapping over Sequences::, for some more functions for
  687. iterating over vectors or lists.
  688. File: cl,  Node: Loop Facility,  Next: Multiple Values,  Prev: Iteration,  Up: Control Structure
  689. Loop Facility
  690. =============
  691. A common complaint with Lisp's traditional looping constructs is that
  692. they are either too simple and limited, such as Common Lisp's `dotimes'
  693. or Emacs Lisp's `while', or too unreadable and obscure, like Common
  694. Lisp's `do' loop.
  695.    To remedy this, recent versions of Common Lisp have added a new
  696. construct called the "Loop Facility" or "`loop' macro," with an
  697. easy-to-use but very powerful and expressive syntax.
  698. * Menu:
  699. * Loop Basics::           `loop' macro, basic clause structure
  700. * Loop Examples::         Working examples of `loop' macro
  701. * For Clauses::           Clauses introduced by `for' or `as'
  702. * Iteration Clauses::     `repeat', `while', `thereis', etc.
  703. * Accumulation Clauses::  `collect', `sum', `maximize', etc.
  704. * Other Clauses::         `with', `if', `initially', `finally'
  705. File: cl,  Node: Loop Basics,  Next: Loop Examples,  Prev: Loop Facility,  Up: Loop Facility
  706. Loop Basics
  707. -----------
  708. The `loop' macro essentially creates a mini-language within Lisp that
  709. is specially tailored for describing loops.  While this language is a
  710. little strange-looking by the standards of regular Lisp, it turns out
  711. to be very easy to learn and well-suited to its purpose.
  712.    Since `loop' is a macro, all parsing of the loop language takes
  713. place at byte-compile time; compiled `loop's are just as efficient as
  714. the equivalent `while' loops written longhand.
  715.  - Special Form: loop CLAUSES...
  716.      A loop construct consists of a series of CLAUSEs, each introduced
  717.      by a symbol like `for' or `do'.  Clauses are simply strung
  718.      together in the argument list of `loop', with minimal extra
  719.      parentheses.  The various types of clauses specify
  720.      initializations, such as the binding of temporary variables,
  721.      actions to be taken in the loop, stepping actions, and final
  722.      cleanup.
  723.      Common Lisp specifies a certain general order of clauses in a loop:
  724.           (loop NAME-CLAUSE
  725.                 VAR-CLAUSES...
  726.                 ACTION-CLAUSES...)
  727.      The NAME-CLAUSE optionally gives a name to the implicit block that
  728.      surrounds the loop.  By default, the implicit block is named
  729.      `nil'.  The VAR-CLAUSES specify what variables should be bound
  730.      during the loop, and how they should be modified or iterated
  731.      throughout the course of the loop.  The ACTION-CLAUSES are things
  732.      to be done during the loop, such as computing, collecting, and
  733.      returning values.
  734.      The Emacs version of the `loop' macro is less restrictive about
  735.      the order of clauses, but things will behave most predictably if
  736.      you put the variable-binding clauses `with', `for', and `repeat'
  737.      before the action clauses.  As in Common Lisp, `initially' and
  738.      `finally' clauses can go anywhere.
  739.      Loops generally return `nil' by default, but you can cause them to
  740.      return a value by using an accumulation clause like `collect', an
  741.      end-test clause like `always', or an explicit `return' clause to
  742.      jump out of the implicit block.  (Because the loop body is
  743.      enclosed in an implicit block, you can also use regular Lisp
  744.      `return' or `return-from' to break out of the loop.)
  745.    The following sections give some examples of the Loop Macro in
  746. action, and describe the particular loop clauses in great detail.
  747. Consult the second edition of Steele's "Common Lisp, the Language", for
  748. additional discussion and examples of the `loop' macro.
  749. File: cl,  Node: Loop Examples,  Next: For Clauses,  Prev: Loop Basics,  Up: Loop Facility
  750. Loop Examples
  751. -------------
  752. Before listing the full set of clauses that are allowed, let's look at
  753. a few example loops just to get a feel for the `loop' language.
  754.      (loop for buf in (buffer-list)
  755.            collect (buffer-file-name buf))
  756. This loop iterates over all Emacs buffers, using the list returned by
  757. `buffer-list'.  For each buffer `buf', it calls `buffer-file-name' and
  758. collects the results into a list, which is then returned from the
  759. `loop' construct.  The result is a list of the file names of all the
  760. buffers in Emacs' memory.  The words `for', `in', and `collect' are
  761. reserved words in the `loop' language.
  762.      (loop repeat 20 do (insert "Yowsa\n"))
  763. This loop inserts the phrase "Yowsa" twenty times in the current buffer.
  764.      (loop until (eobp) do (munch-line) (forward-line 1))
  765. This loop calls `munch-line' on every line until the end of the buffer.
  766. If point is already at the end of the buffer, the loop exits
  767. immediately.
  768.      (loop do (munch-line) until (eobp) do (forward-line 1))
  769. This loop is similar to the above one, except that `munch-line' is
  770. always called at least once.
  771.      (loop for x from 1 to 100
  772.            for y = (* x x)
  773.            until (>= y 729)
  774.            finally return (list x (= y 729)))
  775. This more complicated loop searches for a number `x' whose square is
  776. 729.  For safety's sake it only examines `x' values up to 100; dropping
  777. the phrase `to 100' would cause the loop to count upwards with no
  778. limit.  The second `for' clause defines `y' to be the square of `x'
  779. within the loop; the expression after the `=' sign is reevaluated each
  780. time through the loop.  The `until' clause gives a condition for
  781. terminating the loop, and the `finally' clause says what to do when the
  782. loop finishes.  (This particular example was written less concisely
  783. than it could have been, just for the sake of illustration.)
  784.    Note that even though this loop contains three clauses (two `for's
  785. and an `until') that would have been enough to define loops all by
  786. themselves, it still creates a single loop rather than some sort of
  787. triple-nested loop.  You must explicitly nest your `loop' constructs if
  788. you want nested loops.
  789.