Raymond Toy pushed to branch master at cmucl / cmucl
Commits: ac7d904b by Raymond Toy at 2023-05-22T16:16:29-07:00 Update docstring for *default-external-format*
Add a note that `*default-external-format*` is not affected by any locale settings nor by `set-system-external-format`.
`set-system-external-format` already has a note that it does not affect `*default-external-format*`.
- - - - -
1 changed file:
- src/code/extfmts.lisp
Changes:
===================================== src/code/extfmts.lisp ===================================== @@ -24,7 +24,8 @@ (defvar *default-external-format* :utf-8 "The default external format to use if no other external format is - specified") + specified. This is unaffected by any locale settings or by + SET-SYSTEM-EXTERNAL-FORMAT.")
(defvar *external-formats* (make-hash-table :test 'equal)
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/ac7d904ba06e6d3c189f000f...