Search found 2 matches

by genera
Wed Jan 17, 2018 12:51 pm
Forum: Common Lisp
Topic: /dev/stdin utf-8
Replies: 3
Views: 26610

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 "⍳&...
by genera
Sun Jan 14, 2018 11:21 pm
Forum: Common Lisp
Topic: /dev/stdin utf-8
Replies: 3
Views: 26610

/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...