|
From: | Nicolas Goaziou |
Subject: | Re: [O] [PATCH 1/3] ob-table: Fix org-sbe's handling of quotes in arguments |
Date: | Tue, 13 Mar 2018 00:15:34 +0100 |
User-agent: | Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) |
Hello, Vladimir Panteleev <address@hidden> writes: > * ob-table.el (org-sbe): (org-sbe func (x $ "a\"b\"c")) did the wrong The dollar character looks strange. What syntax is that? > - (quote (format "\"%s\"" el)) > + (quote (format "%S" el)) OK. > +#+name: identity > +#+begin_src emacs-lisp :eval yes > + x > +#+end_src" > + (should (equal "a\"b\"c" > + (eval '(org-sbe identity (x $ "a\"b\"c"))))))) Why `eval'? Why not simply (org-sbe identity (x ...)) ? Regards, -- Nicolas Goaziou
[Prev in Thread] | Current Thread | [Next in Thread] |