Mercurial > hg > xemacs-beta
comparison lisp/cl-macs.el @ 5384:3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
See xemacs-patches message with ID
<AANLkTi=edkEKtK3pZ60ytsG5pTJQy2TjAEVCZCLOa-oA@mail.gmail.com>.
author | Jerry James <james@xemacs.org> |
---|---|
date | Thu, 24 Mar 2011 11:00:11 -0600 |
parents | 919c77c567bb |
children | f9dc75bdbdc4 4dee0387b9de |
comparison
equal
deleted
inserted
replaced
5383:294ab9180fad | 5384:3889ef128488 |
---|---|
826 standard Lisp macro called `return'. Normally they work similarly\; but if | 826 standard Lisp macro called `return'. Normally they work similarly\; but if |
827 you give the loop a name with `named', you will need to use the macro | 827 you give the loop a name with `named', you will need to use the macro |
828 `return-from'.) | 828 `return-from'.) |
829 | 829 |
830 Another extremely useful feature of loops is called \"destructuring\". If, | 830 Another extremely useful feature of loops is called \"destructuring\". If, |
831 in place of VAR, a list (possibly dotted, possibly a tree of arbitary | 831 in place of VAR, a list (possibly dotted, possibly a tree of arbitrary |
832 complexity) is given, the value to be assigned is assumed to have a similar | 832 complexity) is given, the value to be assigned is assumed to have a similar |
833 structure to the list given, and variables in the list will be matched up | 833 structure to the list given, and variables in the list will be matched up |
834 with corresponding elements in the structure. For example: | 834 with corresponding elements in the structure. For example: |
835 | 835 |
836 \(loop | 836 \(loop |