From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: [PATCH] ob-core: check argument to goto-char Date: Sat, 30 Apr 2016 23:24:49 +0200 Message-ID: <87zisayela.fsf@saiph.selenimh> References: <87d1p79x17.fsf@eknet.org> <87bn4r9bms.fsf@eknet.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50726) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1awcO8-00076W-Vw for emacs-orgmode@gnu.org; Sat, 30 Apr 2016 17:25:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1awcNx-0000bx-FN for emacs-orgmode@gnu.org; Sat, 30 Apr 2016 17:25:15 -0400 Received: from relay3-d.mail.gandi.net ([2001:4b98:c:538::195]:43734) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1awcNx-0000Ub-7F for emacs-orgmode@gnu.org; Sat, 30 Apr 2016 17:25:09 -0400 In-Reply-To: (Charles C. Berry's message of "Sat, 30 Apr 2016 14:15:43 -0700") 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: "Charles C. Berry" Cc: emacs-orgmode , Eike Hello, "Charles C. Berry" writes: > The easiest way to borrow babel tools is to use babel to execute src > blocks directly. Here is a start. Run this src block to define a function > `insert-quoted-list-as-result': > > #+BEGIN_SRC emacs-lisp > (defun insert-quoted-list-as-result (my-list) > (save-excursion > (insert > (format > "#+BEGIN_SRC emacs-lisp\n '%S\n#+END_SRC\n\n" my-list)) > (let ((org-confirm-babel-evaluate nil)) > (org-babel-execute-src-block))) > (delete-region (point) > (org-babel-where-is-src-block-result))) > #+END_SRC > > Then put the next line in an *.org buffer and try it out by typing C-x C-e > just below the line: > > : (insert-quoted-list-as-result '(("id" "num") hline ("a" "1") ("b" "2"))) I suggest to use built-in `orgtbl-to-orgtbl' instead: (insert (orgtbl-to-orgtbl '(("id" "num") hline ("a" "1") ("b" "2")) nil)) Regards, -- Nicolas Goaziou