From mboxrd@z Thu Jan 1 00:00:00 1970 From: Charles Berry Subject: Re: [Babel] [possible bug] Empty src block prevents other block to expand Date: Mon, 23 Jun 2014 15:56:00 +0000 (UTC) Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38710) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wz6bw-00013y-MK for emacs-orgmode@gnu.org; Mon, 23 Jun 2014 11:56:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wz6bn-0002r0-UU for emacs-orgmode@gnu.org; Mon, 23 Jun 2014 11:56:48 -0400 Received: from plane.gmane.org ([80.91.229.3]:54084) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wz6bn-0002qZ-Op for emacs-orgmode@gnu.org; Mon, 23 Jun 2014 11:56:39 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Wz6bS-0004Ot-6l for emacs-orgmode@gnu.org; Mon, 23 Jun 2014 17:56:18 +0200 Received: from 137.110.38.64 ([137.110.38.64]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 23 Jun 2014 17:56:18 +0200 Received: from ccberry by 137.110.38.64 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 23 Jun 2014 17:56:18 +0200 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Nicolas Girard gmail.com> writes: > > The empty src block at the beginning of the following file prevents > "capture-tmpl" to expand when tangling. > I think the diagnosis is incorrect. The empty source block has no effect. Adding ':noweb yes' to `capture's header args fixes things. org-version: 8.3-8-gce2359 Chuck > [snip] > #+name: capture > #+begin_src emacs-lisp :tangle no Add `:noweb yes' to the previous line > ("C" "Capture" entry " > <>") > #+end_src > > #+begin_src emacs-lisp :noweb yes > (add-to-list 'org-capture-templates ' > <> 'append) > #+end_src > ---8<------- > [snip]