From: Chris Hanson Date: Sat, 4 Mar 2017 04:31:49 +0000 (-0800) Subject: Remove redundant description of {,sub}string->list. X-Git-Tag: mit-scheme-pucked-9.2.12~196^2~19 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=b7b71b9399dc649a881b9d576ffd045a0444e6d9;p=mit-scheme.git Remove redundant description of {,sub}string->list. --- diff --git a/doc/ref-manual/lists.texi b/doc/ref-manual/lists.texi index 9be62d7b7..c8089f8de 100644 --- a/doc/ref-manual/lists.texi +++ b/doc/ref-manual/lists.texi @@ -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