vindarel / cl-str

Modern, simple and consistent Common Lisp string manipulation library.
https://vindarel.github.io/cl-str/
MIT License
305 stars 37 forks source link

#\No-Break_Space missing in LispWorks #119

Open CK-DE opened 2 months ago

CK-DE commented 2 months ago

str.lisp doesn't compile with LispWorks 7.1 since there is no character called #\No-Break_Space. In LispWorks it is called #\No-Break-Space, i.e. a dash instead of an underline is used.

May I kindly ask you to use .(code-char 160) instead or use a reader conditional.

vindarel commented 2 months ago

Are you using Quicklisp or str from master?

A fix was merged but in February and Quicklisp is not up to date.

see https://github.com/vindarel/cl-str/pull/108/files (for https://github.com/vindarel/cl-str/issues/99)

CK-DE commented 2 months ago

Yes, I am using cl-str via Quicklisp. I will try to get the fixed version via Ultralisp or check it out directly from Github, if this doesn't work.

Thanks for your quick reply and sorry for bothering you with an already fixed bug.