From: Arthur Gleckler Date: Fri, 13 Mar 1992 17:16:21 +0000 (+0000) Subject: Documentation for STRING-TRIM, STRING-TRIM-LEFT, and STRING-TRIM-RIGHT X-Git-Tag: 20090517-FFI~9596 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=62b88533ba8e29bc3e3668d6770b50ea4210d194;p=mit-scheme.git Documentation for STRING-TRIM, STRING-TRIM-LEFT, and STRING-TRIM-RIGHT said that CHAR-SET argument defaulted to char-set:whitespace, but it really defaults to char-set:not-whitespace. --- diff --git a/v7/doc/ref-manual/scheme.texinfo b/v7/doc/ref-manual/scheme.texinfo index 77820dd08..8feb9ebe7 100644 --- a/v7/doc/ref-manual/scheme.texinfo +++ b/v7/doc/ref-manual/scheme.texinfo @@ -5183,7 +5183,7 @@ Returns a newly allocated string created by removing all characters that are not in @var{char-set} from: (@code{string-trim}) both ends of @var{string}; (@code{string-trim-left}) the beginning of @var{string}; or (@code{string-trim-right}) the end of @var{string}. @var{Char-set} -defaults to @code{char-set:whitespace}. +defaults to @code{char-set:not-whitespace}. @end deffn @node Searching Strings, Matching Strings, Cutting and Pasting Strings, Strings