From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: [babe] noweb used to work but no longer does... what has changed? Date: Mon, 01 Feb 2010 23:06:54 +0000 Message-ID: <87zl3s1rox.wl%ucecesf@ucl.ac.uk> Reply-To: Eric S Fraga Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nc5ME-0000gN-3o for emacs-orgmode@gnu.org; Mon, 01 Feb 2010 18:07:02 -0500 Received: from [199.232.76.173] (port=55132 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nc5MD-0000fo-MO for emacs-orgmode@gnu.org; Mon, 01 Feb 2010 18:07:01 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Nc5MB-0003QC-Tg for emacs-orgmode@gnu.org; Mon, 01 Feb 2010 18:07:01 -0500 Received: from vscane-b.ucl.ac.uk ([144.82.108.141]:55018) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Nc5MB-0003PY-J7 for emacs-orgmode@gnu.org; Mon, 01 Feb 2010 18:06:59 -0500 Received: from 79-74-10-216.dynamic.dsl.as9105.com ([79.74.10.216] helo=esf.ucl.ac.uk) by vscane-b.ucl.ac.uk with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.60) (envelope-from ) id 1Nc5M8-0004q4-1w for emacs-orgmode@gnu.org; Mon, 01 Feb 2010 23:06:56 +0000 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: org-mode mailing list Hi, after two months away from a particular document, I find that all my babel codes in that document no longer work as they used to. Specifically, references to other source code blocks are now no longer expanded: --8<---------------cut here---------------start------------->8--- * maxima test *** COMMENT units #+srcname: units #+begin_src maxima programmode: false$ h: 3600*s$ day: 24*h$ #+end_src *** Real evaluations #+srcname: unitstest #+begin_src maxima :results output :exports results :noweb <> solution: solve([m = 2*day], [m]),numer$ #+end_src #+results: unitstest : stdin:2:Incorrect syntax: < is not a prefix operator : << : ^ --8<---------------cut here---------------end--------------->8--- The error at the end is because the code segment immediately above, unitstest, has been copied literally to the maxima input file without expansion of "<>". This used to work fine so something has changed? If the change is something that will have affected my maxima babel code, I can post that (but it's a total hack...). Any and all suggestions or pointers more than welcome! Thanks, eric