aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Petton2015-08-31 08:54:11 +0200
committerNicolas Petton2015-08-31 08:54:11 +0200
commit8d76c00728eb8ba41d04bc9344181aeffe158501 (patch)
tree1aa99cc4f367b138a7b84ca2906c43b059232930
parent6514fe88904e658c527deae5be9a3f6ac539653f (diff)
downloademacs-8d76c00728eb8ba41d04bc9344181aeffe158501.tar.gz
emacs-8d76c00728eb8ba41d04bc9344181aeffe158501.zip
Better documentation of seq-let
* doc/lispref/sequences.texi (Sequence Functions): Rephrase the documentation of seq-let.
-rw-r--r--doc/lispref/sequences.texi7
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi
index eb152283fbb..12ed881dadb 100644
--- a/doc/lispref/sequences.texi
+++ b/doc/lispref/sequences.texi
@@ -833,10 +833,9 @@ vector or string (@pxref{Iteration} for more information about the
833 833
834@defmac seq-let arguments sequence body@dots{} 834@defmac seq-let arguments sequence body@dots{}
835@cindex sequence destructuring 835@cindex sequence destructuring
836 This macro binds the variables in defined in the sequence 836 This macro binds the variables defined in @var{arguments} to the
837@var{arguments} to the elements of the sequence @var{sequence}. 837elements of the sequence @var{sequence}. @var{arguments} can itself
838@var{arguments} can itself include sequences allowing for nested 838include sequences allowing for nested destructuring.
839destructuring.
840 839
841The @var{arguments} sequence can also include the @code{&rest} marker 840The @var{arguments} sequence can also include the @code{&rest} marker
842followed by a variable name to be bound to the rest of 841followed by a variable name to be bound to the rest of