emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [O] [babel] Output table


From: Eric Schulte
Subject: Re: [O] [babel] Output table
Date: Mon, 02 Dec 2013 11:28:08 -0700
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux)

"Sebastien Vauban" <address@hidden> writes:

> Hello,
>
> I'm trying to generate R graphs from lines found in the *Messages* buffer with
> the following code of mine:
>
> #+begin_src emacs-lisp :results output table
>   (setq txt nil)
>   (with-current-buffer "*Messages*"
>     (goto-char (point-min))
>     (while (re-search-forward
>             "^Retrieving newsgroup: \\(.+\\)"
>             nil t)
>       (setq txt (concat txt (format "%s" (match-string 1)) "\n"))
>       (princ txt)))
> #+end_src
>
> However, the results is always an example block, NEVER in an Org _table_ -- 
> and
> I don't understand why. Does anybody?
>
> Best regards,
>   Seb

I bet because ":results output" in Emacs Lisp is only interpreted as a
string.  You're better off just returning a list with something like the
following.

#+begin_src emacs-lisp :results output table
  (let (txts)
    (with-current-buffer "*Messages*"
      (goto-char (point-min))
      (while (re-search-forward
              "^Retrieving newsgroup: \\(.+\\)"
              nil t)
        (push (match-string 1) txts)))
    txts)
#+end_src

-- 
Eric Schulte
https://cs.unm.edu/~eschulte
PGP: 0x614CA05D



reply via email to

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