How to get a quick list to load rfc2388 into slime?

I try to load hunchentoot via quicklisp in slime and get the following error:

READ error during COMPILE-FILE:

  :ASCII stream decoding error on
  #<SB-SYS:FD-STREAM
    for "file [redacted]/dists/quicklisp/software/rfc2388-20120107-http/rfc2388.asd"
    {100607B723}>:

    the octet sequence #(196) cannot be decoded.

  (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 .;)

+5
4

? Emacs , SLIME SWANK.

/usr/bin/locale, :

navi ~ » locale
LANG=pl_PL.UTF-8
LC_CTYPE=pl_PL.UTF-8
LC_NUMERIC=pl_PL.UTF-8
LC_TIME=pl_PL.UTF-8
LC_COLLATE="pl_PL.UTF-8"
LC_MONETARY=pl_PL.UTF-8
LC_MESSAGES=C
LC_PAPER=pl_PL.UTF-8
LC_NAME="pl_PL.UTF-8"
LC_ADDRESS="pl_PL.UTF-8"
LC_TELEPHONE="pl_PL.UTF-8"
LC_MEASUREMENT=pl_PL.UTF-8
LC_IDENTIFICATION=pl_PL.UTF-8
LC_ALL=
navi ~ »

Mine UTF-8 , , "C".

+2

:

... /quicklisp/dists/quicklisp/software/rfc 2388 * rfc2388.asd . : author defsystem. , . ASCII.

, , . .

0

UTF-8 , DEBUGGER INPUT-REPLACEMENT . , "?" "x" , , ENTER. . , , .

, - , , ascii .

0

HOME .cache, fasl. fasl , - .

-1

All Articles