Search found 2 matches
- Wed Jan 17, 2018 12:51 pm
- Forum: Common Lisp
- Topic: /dev/stdin utf-8
- Replies: 3
- Views: 35093
Re: /dev/stdin utf-8
I understand, but here is the behavior on lispworks's console vs sbcl: LW: (ql:quickload :babel) [...output omited...] (fli:set-locale) "en_US.UTF-8" (babel:string-to-octets "â³") #(195 162 194 141 194 179) (length (babel:string-to-octets "â³")) 6 (describe "â³&...
- Sun Jan 14, 2018 11:21 pm
- Forum: Common Lisp
- Topic: /dev/stdin utf-8
- Replies: 3
- Views: 35093
/dev/stdin utf-8
On sbcl: (length "â³â³â³") 3 On lispworks's UI: (length "â³â³â³") 3 On lispworks' console: (length "â³â³â³") 9 What is the proper way to make lispworks' console's default external format to utf-8, as it is in its gui? Note: "â³" is ninth letter of th...