Re: Common Lisp weird Babel's results.

2025-02-24 Thread Héctor Galbis Sanchis
> I think that the code is already an improvement. Nice! > May you convert it into a proper patch against the latest main? Of course! I'll try to do it this weekend. El sáb, 22 feb 2025 a las 16:52, Ihor Radchenko () escribió: > Héctor Galbis Sanchis writes: > > >> #+RESULTS: > >> [[file:"p

Re: Common Lisp weird Babel's results.

2025-02-22 Thread Ihor Radchenko
Héctor Galbis Sanchis writes: >> #+RESULTS: >> [[file:"plot.png"]] >> >>So, it is no so simple. > > I see. I've been looking at ob-emacs-lisp.el since elisp and common lisp > are very similar. So, checking if `scalar` or `verbatim` are used should be > sufficient. If some is being used then ret

Re: Common Lisp weird Babel's results.

2025-02-09 Thread Ihor Radchenko
Héctor Galbis Sanchis writes: > I guess I need to hack a bit org-babel-execute:lisp to suit my needs. For you example with multiple values, I'd appreciate it if you shared you hacking. I do not program in CL, and it would be nice to get this fixed by a person who actually knows CL. -- Ihor Rad

Re: Common Lisp weird Babel's results.

2025-02-09 Thread Héctor Galbis Sanchis
I guess I need to hack a bit org-babel-execute:lisp to suit my needs. Thaks for the answer anyway!! El dom, 9 feb 2025 a las 16:07, Ihor Radchenko () escribió: > Héctor Galbis Sanchis writes: > > > I noticed that some snippets are not printing the results as I expected. > > > > From this snippe

Re: Common Lisp weird Babel's results.

2025-02-09 Thread Ihor Radchenko
Héctor Galbis Sanchis writes: > I noticed that some snippets are not printing the results as I expected. > > From this snippet: > > #+begin_src lisp :results value > (values "Hello") > #+end_src > > The results are: > > #+RESULTS: > : Hello > > But it should be: > > #+RESULTS: > : "Hello" Org

Common Lisp weird Babel's results.

2025-01-26 Thread Héctor Galbis Sanchis
Hello, I noticed that some snippets are not printing the results as I expected. >From this snippet: #+begin_src lisp :results value (values "Hello") #+end_src The results are: #+RESULTS: : Hello But it should be: #+RESULTS: : "Hello" I don’t know if this is the intended behaviour, but I t