* doc/lispref/lists.texi (Building Lists):
* src/fns.c (Fappend): Fix last change (bug#73427). Suggested by
Mattias EngdegÄrd <mattias.engdegard@gmail.com>.
(cherry picked from commit
8f265b49e3d3b4403ab0cdd4a5b94d2e335297cb)
@cindex list of characters of a string
@cindex convert string to list of its characters
+@findex string-to-list
Here's how to convert a string into a list of its characters:
@example
@end group
@end example
+@noindent
+The function @code{string-to-list} is a handy shortcut for the above.
+
With the help of @code{apply} (@pxref{Calling Functions}), we can append
all the lists in a list of lists:
As an exception, if all the arguments but the last are @code{nil} and
the last argument is not a list, the return value is that last argument
-unchanged:
+unchanged (i.e., in this case the return value is not a list):
@example
@group
As an exception, if all the arguments except the last are nil, and the
last argument is not a list, the return value is that last argument
-unaltered.
+unaltered, not a list.
usage: (append &rest SEQUENCES) */)
(ptrdiff_t nargs, Lisp_Object *args)