From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Miele Subject: Bug: COMMENT and noweb-ref Date: Mon, 16 Sep 2019 21:33:21 +0000 Message-ID: <87o8zkyli6.fsf@gmail.com> Reply-To: sebastian.miele@gmail.com Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:34215) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i9ycg-0003LX-PS for emacs-orgmode@gnu.org; Mon, 16 Sep 2019 17:33:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i9ycf-00064p-Pf for emacs-orgmode@gnu.org; Mon, 16 Sep 2019 17:33:26 -0400 Received: from mail-wr1-x429.google.com ([2a00:1450:4864:20::429]:45942) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i9ycf-00063q-Jq for emacs-orgmode@gnu.org; Mon, 16 Sep 2019 17:33:25 -0400 Received: by mail-wr1-x429.google.com with SMTP id r5so886058wrm.12 for ; Mon, 16 Sep 2019 14:33:24 -0700 (PDT) Received: from tisch ([2a02:908:175c:4260:5ffc:7882:6024:ca5b]) by smtp.gmail.com with ESMTPSA id r20sm264415wmh.37.2019.09.16.14.33.22 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 16 Sep 2019 14:33:22 -0700 (PDT) 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: emacs-orgmode@gnu.org org-babel-tangle on * A #+BEGIN_SRC elisp :tangle yes :noweb yes ;; A <> #+END_SRC * COMMENT B #+BEGIN_SRC elisp :noweb-ref B ;; B #+END_SRC * COMMENT C #+BEGIN_SRC elisp :tangle yes ;; C #+END_SRC produces a file with A and B in it. Expected: Just A. Changing #+BEGIN_SRC elisp :noweb-ref B ;; B #+END_SRC to # #+BEGIN_SRC elisp :noweb-ref B # ;; B # #+END_SRC does yield the expected result.