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

-- 
Sebastien Vauban


Reply via email to