From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-1?Q?Andreas_R=F6hler?= Subject: Re: BUG typo in babel.org? Date: Tue, 26 Feb 2013 12:05:46 +0100 Message-ID: <512C970A.5030205@easy-emacs.de> References: <512C8823.9010005@easy-emacs.de> <87wqtv8ihu.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------010906030009020804080706" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:38334) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UAILi-000170-Iy for emacs-orgmode@gnu.org; Tue, 26 Feb 2013 06:05:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UAILe-000392-Lc for emacs-orgmode@gnu.org; Tue, 26 Feb 2013 06:05:30 -0500 Received: from moutng.kundenserver.de ([212.227.126.187]:53401) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UAILe-00038c-Bi for emacs-orgmode@gnu.org; Tue, 26 Feb 2013 06:05:26 -0500 In-Reply-To: <87wqtv8ihu.fsf@bzg.ath.cx> 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: Bastien Cc: emacs-orgmode This is a multi-part message in MIME format. --------------010906030009020804080706 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Am 26.02.2013 11:41, schrieb Bastien: > Hi Andreas, > > Andreas Röhler writes: > >> in org-mode/testing/examples/babel.org >> >> a noweb-example1 as called, which seems not defined > > Can you help suggesting a fix (ideally as a patch) and > explaining why it is needed? > > Thanks, > Hi Bastien, as I'm still exploring org-mode and the way to write tests for, please have a look IIUC, Andreas --------------010906030009020804080706 Content-Type: text/x-patch; name="babel.org.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="babel.org.diff" commit 798372693b754e7a5d5311b8e0b8b79f70005212 Author: Andreas Roehler Date: Tue Feb 26 12:01:27 2013 +0100 define noweb-example1 in org-mode/testing/examples/babel.org noweb-example1 as called later on, but seems not defined TINYCHANGE diff --git a/testing/examples/babel.org b/testing/examples/babel.org index 7c30ab2..8fad7f0 100644 --- a/testing/examples/babel.org +++ b/testing/examples/babel.org @@ -8,6 +8,11 @@ #+name: noweb-example #+begin_src emacs-lisp :results silent :exports code + (message "expanded") +#+end_src + +#+name: noweb-example1 +#+begin_src emacs-lisp :results silent :exports code (message "expanded1") #+end_src --------------010906030009020804080706--