From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lawrence Bottorff Subject: Table results doesn't work for dotted lists Date: Tue, 24 Dec 2019 22:24:29 -0600 Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="0000000000009c8159059a7fa390" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:48793) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ijyDz-0007Rf-1e for emacs-orgmode@gnu.org; Tue, 24 Dec 2019 23:24:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ijyDy-0001Gm-41 for emacs-orgmode@gnu.org; Tue, 24 Dec 2019 23:24:42 -0500 Received: from mail-lj1-x22b.google.com ([2a00:1450:4864:20::22b]:39698) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ijyDx-0001E7-Su for emacs-orgmode@gnu.org; Tue, 24 Dec 2019 23:24:42 -0500 Received: by mail-lj1-x22b.google.com with SMTP id l2so22105888lja.6 for ; Tue, 24 Dec 2019 20:24:41 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode Mailinglist --0000000000009c8159059a7fa390 Content-Type: text/plain; charset="UTF-8" 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 --0000000000009c8159059a7fa390 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
I've got this

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

#+RESULTS:
|-------|
| hi =C2=A0 =C2=A0|
| t= here |
|-------|

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
&= #39;(hline '(hi . bye) '(here . there) hline)
#+end_src

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

but that's k= ludge. Just wondering why it would distinguish between a trad list and a do= tted list.

LB


--0000000000009c8159059a7fa390--