[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Slashes inserted into Common Lisp code evaluation results
From: |
Nathan Van Ymeren |
Subject: |
Re: Slashes inserted into Common Lisp code evaluation results |
Date: |
Tue, 2 May 2023 23:00:16 -0700 |
Ahh, I forgot to specify. I too use Sly in lieu of Slime, though I'm on emacs
28. That patch does not appear to have made its way into the prerelease I’m
running. I will apply it manually later this evening and see how it goes.
Thanks,
N
May 2, 2023 03:52:52 gerard.vermeulen@posteo.net:
>
>
> On 02.05.2023 08:18, Nathan Van Ymeren wrote:
>> When I specify double width floats, they appear with slashes embedded
>> in the RESULTS blocks, like so:
>> #+begin_src lisp
>> (+ 1 0.0002d0)
>> #+end_src
>> #+RESULTS:
>> : 1\.0002d0
> [...]
>> Is this a bug? If not, how do I suppress this behaviour?
>>
> Do you use SLIME?
> I use SLY on a recent emacs-29.0.90 build with a recent org-9.7pre.
> My result is (without the escaped dot):
>
> #+begin_src lisp
> (+ 1 0.0002d0)
> #+end_src
>
> #+RESULTS:
> : 1.0002d0
>
> But I needed also to patch ob-lisp, see:
> https://list.orgmode.org/480536eb12bf49144384f4b1a85d8bdf@posteo.net/
>
> In my opinion, SLY is friendlier out of the box than SLIME.
>
> Regards -- Gerard