I try to load hunchentoot via quicklisp in slime and get the following error:
READ error during COMPILE-FILE:
:ASCII stream decoding error on
for "file [redacted]/dists/quicklisp/software/rfc2388-20120107-http/rfc2388.asd"
{100607B723}>:
the octet sequence
(in form starting at line: 29, column: 29,
file-position: 1615)
[Condition of type ASDF:LOAD-SYSTEM-DEFINITION-ERROR]
I get this when I try to run:
(ql:quickload "hunchentoot")
Or simply:
(ql:quickload "rfc2388")
Others seem to get this one . I found one clue on a possible answer, saying:
The system file is encoded as UTF-8.
I'm not sure how to configure things so that SBCL on Windows starts with
UTF-8 as its default encoding for loading sources, but that what you
need to do.
From there I tried (based, for example, on [this] adding the following to my emacs configuration:
(set-language-environment "UTF-8")
(setq slime-lisp-implementations
'((sbcl ("/opt/local/bin/sbcl") :coding-system utf-8-unix)))
(setq slime-net-coding-system 'utf-8-unix)
But ... I still get the same error, even after completely restarting emacs, to make sure that I have a fresh slim that read the above configuration.
So, what am I missing, and / or otherwise, how can I download this?
Thanks in advance! (Thanks again for the successful reply .;)