From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: Patch: strip (unneeded) quotes from singular value results Date: Mon, 16 Sep 2019 18:39:27 +0200 Message-ID: <878sqo6vr4.fsf@nicolasgoaziou.fr> References: <989101179298a3d30db88714bb09367edce54772.camel@daatsys.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:45280) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i9u2V-0006Qx-Ef for emacs-orgmode@gnu.org; Mon, 16 Sep 2019 12:39:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i9u2S-0006zg-Ki for emacs-orgmode@gnu.org; Mon, 16 Sep 2019 12:39:47 -0400 Received: from relay9-d.mail.gandi.net ([217.70.183.199]:51981) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1i9u2S-0006wz-Cy for emacs-orgmode@gnu.org; Mon, 16 Sep 2019 12:39:44 -0400 In-Reply-To: <989101179298a3d30db88714bb09367edce54772.camel@daatsys.com> (Mike Ivanov's message of "Sat, 07 Sep 2019 11:26:55 -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: Mike Ivanov Cc: emacs-orgmode@gnu.org Hello, Mike Ivanov writes: > lisp/ob-lisp.el | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lisp/ob-lisp.el b/lisp/ob-lisp.el > index e717fc34e..0afb8c053 100644 > --- a/lisp/ob-lisp.el > +++ b/lisp/ob-lisp.el > @@ -107,7 +107,7 @@ a property list containing the parameters of the block." > (point-min) (point-max))))) > (cdr (assq :package params))))))) > (org-babel-result-cond (cdr (assq :result-params params)) > - result > + (org-babel-strip-quotes result) Applied, after changing `org-babel-strip-quotes' to `org-strip-quotes'. Thank you. Regards, -- Nicolas Goaziou