From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-1?Q?=22Martin_G=2E_Skj=E6veland=22?= Subject: [babel] tangle creates different filename than it used to Date: Fri, 26 Feb 2010 17:41:42 +0100 Message-ID: <4B87F9C6.5050103@ifi.uio.no> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nl3Di-00079z-1N for emacs-orgmode@gnu.org; Fri, 26 Feb 2010 11:39:18 -0500 Received: from [140.186.70.92] (port=46559 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nl3Dg-00079X-O9 for emacs-orgmode@gnu.org; Fri, 26 Feb 2010 11:39:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Nl3Df-0001x3-MH for emacs-orgmode@gnu.org; Fri, 26 Feb 2010 11:39:16 -0500 Received: from mail-out2.uio.no ([129.240.10.58]:49951) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Nl3Df-0001wu-Fh for emacs-orgmode@gnu.org; Fri, 26 Feb 2010 11:39:15 -0500 Received: from mail-mx5.uio.no ([129.240.10.46]) by mail-out2.uio.no with esmtp (Exim 4.69) (envelope-from ) id 1Nl3Dd-00074M-Ny for emacs-orgmode@gnu.org; Fri, 26 Feb 2010 17:39:13 +0100 Received: from 1x-193-157-202-42.uio.no ([193.157.202.42]) by mail-mx5.uio.no with esmtpsa (TLSv1:AES256-SHA:256) user martige (Exim 4.69) (envelope-from ) id 1Nl3Dd-0007dH-C9 for emacs-orgmode@gnu.org; Fri, 26 Feb 2010 17:39:13 +0100 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: emacs-orgmode Hi, running tangle with the following values #+begin_src xml :tangle test.rdf ... #+end_src used to create a file called test.rdf. However, after a fresh git pull today this now tangles to the file test.rdf.xml, which is not what I want. I think I could add rdf as a language babel would understand but interpret as xml with something like (add-to-list 'org-babel-tangle-langs '("rdf" "xml" nil t)) and rewrite the block to #+begin_src rdf :tangle test ... #+end_src , but then it complains that there is no rdf-mode. How can I best solve this? Thanks! Martin