Charset problem with Postmodern in Common Lisp (SLIME)

4

I'm trying to prepare an environment to study the development of Web applications in Common Lisp. Since I'm not a personal computer at the moment, I'm trying to learn with Lispbox to have a Clozure CL + SLIME + Quicklisp environment without requiring installation.

I'm following this tutorial to study. I can no longer follow because, upon reaching this line to test:

(with-connection (db-params)
  (query (:select (:+ 1 2)) :single))

I get the following error:

Invalid byte 0x6F inside a character.
   [Condition of type TRIVIAL-UTF-8:UTF-8-DECODING-ERROR]

From what I understand, it's a charset error (and I think it's with Postmodern, not Hunchentoot). But since I could not find any help or documentation about this setup, I'm asking this question.

    
asked by anonymous 16.02.2014 / 15:46

1 answer

-1

Have you tried adding UTF-8 to heroku?

Use the command:

$ heroku config:add LANG=en_US.UTF-8
    
10.05.2014 / 03:45