Update documentation for param:parser-fold-case?.
authorChris Hanson <org/chris-hanson/cph>
Mon, 30 Jan 2017 04:42:28 +0000 (20:42 -0800)
committerChris Hanson <org/chris-hanson/cph>
Mon, 30 Jan 2017 04:42:28 +0000 (20:42 -0800)
doc/ref-manual/io.texi

index a9638e49b208a5e2e9cd4d46db99f5b6c81fa8fd..116c28ee6a401f2e0918653381cb861b29595bd5 100644 (file)
@@ -860,15 +860,17 @@ anything other than the default.
 The default value of this parameter is @code{10}.
 @end deffn
 
-@deffn parameter param:parser-canonicalize-symbols?
-This parameter controls how the parser handles case-sensitivity of
-symbols.  If it is bound to its default value of @code{#t}, symbols read
-by the parser are converted to lower case before being interned.
-Otherwise, symbols are interned without case conversion.
-
-In general, it is a bad idea to use this feature, as it doesn't really
+@deffn parameter param:parser-fold-case?
+This parameter controls whether the parser folds the case of symbols,
+character names, and certain other syntax.  If it is bound to its
+default value of @code{#t}, symbols read by the parser are case-folded
+prior to being interned.  Otherwise, symbols are interned without
+folding.
+
+At present, it is a bad idea to use this feature, as it doesn't really
 make Scheme case-sensitive, and therefore can break features of the
-Scheme runtime that depend on case-insensitive symbols.
+Scheme runtime that depend on case-folded symbols.  Instead, use the
+@code{#!fold-case} or @code{#!no-fold-case} markers in your code.
 @end deffn
 
 @defvr {obsolete variable} *parser-radix*