emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Table results doesn't work for dotted lists


From: Lawrence Bottorff
Subject: Table results doesn't work for dotted lists
Date: Tue, 24 Dec 2019 22:24:29 -0600

I've got this

#+begin_src emacs-lisp :results table
'(hline (hi) (there) hline)
#+end_src

#+RESULTS:
|-------|
| hi    |
| there |
|-------|

but then :results table has no effect on this

#+begin_src emacs-lisp :results table
'(hline (hi . bye) (here . there) hline)
#+end_src

#+RESULTS:
: (hline (hi . bye) (here . there) hline)


throwing in quotes to the lists changes it to this

#+begin_src emacs-lisp :results table
'(hline '(hi . bye) '(here . there) hline)
#+end_src

#+RESULTS:
|-------+----------------|
| quote | (hi . bye)     |
| quote | (here . there) |
|-------+----------------|

but that's kludge. Just wondering why it would distinguish between a trad list and a dotted list.

LB



reply via email to

[Prev in Thread] Current Thread [Next in Thread]