]> git.eshelyaron.com Git - emacs.git/commitdiff
Clarify `nconc` behaviour for dotted lists (bug#63103)
authorMattias Engdegård <mattiase@acm.org>
Thu, 27 Apr 2023 11:52:57 +0000 (13:52 +0200)
committerMattias Engdegård <mattiase@acm.org>
Thu, 27 Apr 2023 12:20:45 +0000 (14:20 +0200)
* doc/lispref/lists.texi (Rearrangement): Explicitly say that dotted
lists are valid args to `nconc` and give an example.

doc/lispref/lists.texi

index a509325854fced5a480ae938c6f09267a3a0f5dc..22a5f7f1239eb3a59c41736ca37c768d8c8564a8 100644 (file)
@@ -1224,7 +1224,15 @@ x
 @end example
 
 However, the other arguments (all but the last) should be mutable
-lists.
+lists.  They can be dotted lists, whose last @sc{cdr}s are then
+replaced with the next argument:
+
+@example
+@group
+(nconc (cons 1 2) (cons 3 (cons 4 5)) 'z)
+     @result{} (1 3 4 . z)
+@end group
+@end example
 
 A common pitfall is to use a constant list as a non-last argument to
 @code{nconc}.  If you do this, the resulting behavior is undefined