Ws Hu (2016-06-12 12:17 +0300) wrote: > Hi, > > guile replaces non-ascii unicodes with question marks while > interpreting script file: > > $ cat test.scm > (display "蛤") > $ file test.scm > test.scm: UTF-8 Unicode text > $ guile test.scm > ?
Hi, putting (setlocale LC_ALL "") in the beginning of "test.scm" should fix it. -- Alex