Re: [CM] Strange display behavior

2022-05-26 Thread bil
(display `(foo . ,(string-append "hello " "there"))) Thanks. This is the other append in g_quasiquote_1 which I meant to check, but got sidetracked -- ca line 67688. I'll put up the fixed version tomorrow. In s7 it displays as (foo . "hello there"). ___

Re: [CM] Strange display behavior

2022-05-26 Thread Michael Mee
Thanks! Rudy’s example now works with the 26-may-2022 version! However this does not work as expected yet: λ (display `(foo . ,(string-append "hello " "there"))) (foo #\h #\i #\space #\t #\h #\e #\r #\e)(foo #\h #\i #\space #\t #\h #\e #\r #\e) For comparison, Guile gives: (foo . hello there