From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Charles C. Berry" Subject: Re: [RFC] Modified Babel call execution and property deprecation Date: Sun, 19 Jun 2016 09:43:02 -0700 Message-ID: References: <87r3bwydno.fsf@saiph.selenimh> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54946) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bEfoq-0003VY-AR for emacs-orgmode@gnu.org; Sun, 19 Jun 2016 12:43:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bEfol-0005c4-AJ for emacs-orgmode@gnu.org; Sun, 19 Jun 2016 12:43:31 -0400 Received: from iport-bcv2-out.ucsd.edu ([132.239.0.73]:57344) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bEfol-0005T6-1w for emacs-orgmode@gnu.org; Sun, 19 Jun 2016 12:43:27 -0400 In-Reply-To: <87r3bwydno.fsf@saiph.selenimh> 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: Nicolas Goaziou Cc: Org Mode List On Fri, 17 Jun 2016, Nicolas Goaziou wrote: > Hello, > > I just pushed changes about how Babel calls (including inline calls) are > evaluated. Basically, they are not treated anymore as an Emacs Lisp > variable, but as virtual Babel source blocks, which can then be executed > with `org-babel-execute-src-block'. Thanks. This is helpful to me. In looking over ob-lob.el, I noticed that the `org-babel-library-of-babel' docstring is misleading: #+BEGIN_QUOTE Library of source-code blocks. This is an association list. Populate the library by adding files to `org-babel-lob-files'. #+END_QUOTE So is the docstring for `org-babel-lob-files': #+BEGIN_QUOTE Files used to populate the `org-babel-library-of-babel'. To add files to this list use the `org-babel-lob-ingest' command. #+END_QUOTE Grepping the lisp sources and worg it seems that that variable is never actually used for anything nor modified by any function. So maybe that variable should be removed or made obsolete and the docstring for `org-babel-library-of-babel' changed to something like #+BEGIN_QUOTE Library of source-code blocks. This is an association list. Populate the library with the `org-babel-lob-ingest' command. #+END_QUOTE Chuck