Skip to content
Snippets Groups Projects
Forked from cmucl / cmucl
Source project has a limited visibility.
  • Raymond Toy's avatar
    88f6852f
    Change :iso-8859-1 to :iso8859-1 in find-encoding · 88f6852f
    Raymond Toy authored
    While there's an alias for `:iso-8859-1`, it's safer to use
    `:iso8859-1` which is builtin.  Using `:iso-8859-1` requires the alias
    database to be loaded, which isn't (currently) guaranteed when
    `find-encoding` is called.  Thus use the builtin name instead.
    Besides, `:iso8859-1` is used in other places in "intl.lisp".
    
    (This is hard to test, but I noticed it when running
    ```
    LANG=ko_KR.utf8 lisp
    ```
    on the branch `issue-139-add-alias-local-external-format`.)
    88f6852f
    History
    Change :iso-8859-1 to :iso8859-1 in find-encoding
    Raymond Toy authored
    While there's an alias for `:iso-8859-1`, it's safer to use
    `:iso8859-1` which is builtin.  Using `:iso-8859-1` requires the alias
    database to be loaded, which isn't (currently) guaranteed when
    `find-encoding` is called.  Thus use the builtin name instead.
    Besides, `:iso8859-1` is used in other places in "intl.lisp".
    
    (This is hard to test, but I noticed it when running
    ```
    LANG=ko_KR.utf8 lisp
    ```
    on the branch `issue-139-add-alias-local-external-format`.)