Post #2745780
2026-05-16 04:49 UTC
Edit: This seems to have been the result of me running an old emacs and orgmode on this machine.
PERSONALLY I want @yantar92@fosstodon.org to solve this for me:
#+name: prints
#+begin_src elisp :var x=()
(print x)
#+end_src
#+RESULTS: prints
** Flat
#+name: list
- foo
- bar
- baz
#+call: prints(list)
#+RESULTS:
| foo | (unordered (bar (unordered (baz)))) |
I just wish something else would happen.
#emacs #orgmode #literateProgramming
Replies (2)
-
@screwlisp@gamerplus.org 2026-05-16 04:52
@yantar92@fosstodon.org @sacha@social.sachachua.com @chiply@fosstodon.org @oantolin@mathstodon.xyz @anthk@neopaquita.es @corwin@hostux.social #emacsBrigade
-
@yantar92@fosstodon.org 2026-05-16 05:07
@screwlisp@gamerplus.org #+name: prints #+begin_src elisp :var x=() :results verbatim (print x) #+end_src #+RESULTS: prints : nil #+name: list - foo - bar - baz #+call: prints(list) #+RESULTS: : ("foo") (I am not sure how you got the second one)