Remove redundant description of {,sub}string->list.
authorChris Hanson <org/chris-hanson/cph>
Sat, 4 Mar 2017 04:31:49 +0000 (20:31 -0800)
committerChris Hanson <org/chris-hanson/cph>
Sat, 4 Mar 2017 04:31:49 +0000 (20:31 -0800)
doc/ref-manual/lists.texi

index 9be62d7b750f159ba3542b8fcb6943618428e3a9..c8089f8def39c1f1d0b45851f6a6537dd31f716a 100644 (file)
@@ -473,24 +473,6 @@ is @code{list->vector}.
 @end example
 @end deffn
 
-@deffn procedure string->list string
-@deffnx procedure substring->list string start end
-@cindex string, converting to list
-@findex list->string
-@code{string->list} returns a newly allocated list of the character
-elements of @var{string}.@*
-@code{substring->list} returns a newly allocated list of the character
-elements of the given substring.  The inverse of @code{string->list} is
-@code{list->string}.
-
-@example
-@group
-(string->list "abcd")                   @result{} (#\a #\b #\c #\d)
-(substring->list "abcdef" 1 3)          @result{} (#\b #\c)
-@end group
-@end example
-@end deffn
-
 @node Selecting List Components, Cutting and Pasting Lists, Construction of Lists, Lists
 @section Selecting List Components
 @cindex selection, of list component