From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastien Vauban Subject: [Babel] 2 new problems with tangling Date: Tue, 17 Jun 2014 17:00:27 +0200 Message-ID: <86egyn37jo.fsf@somewhere.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: 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-mXXj517/zsQ@public.gmane.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org-mXXj517/zsQ@public.gmane.org To: emacs-orgmode-mXXj517/zsQ@public.gmane.org Hello, After an update to Org 8.2.7, I have troubles tangling files. Problems: - Code blocks "tagged" with ":tangle no" are still tangled. - Code called in Noweb syntax "<>" is not executed anymore. It's possible that the error resides on my side, so the first question is: do you see the same as me? ECM: --8<---------------cut here---------------start------------->8--- #+TITLE: Shell utilities #+LANGUAGE: en #+OPTIONS: ^:{} #+PROPERTY: eval no * Preamble Helper function. #+name: current-year #+begin_src emacs-lisp :eval yes :results silent :tangle no (format-time-string "%Y") #+end_src * Common :PROPERTIES: :tangle: ~/common.sh :END: Everything in common between Bash and Z shell will come here. #+begin_src sh :noweb yes # Hey Emacs, this is a -*- sh -*- file ## .commonshrc --- Common features between (Linux and Cygwin) Bash and Z Shell # Copyright (C) 2009-<> #+end_src #+begin_src sh echo "This is tangled... right..." #+end_src #+begin_src sh :tangle no echo "This is tangled as well... KO!" #+end_src --8<---------------cut here---------------end--------------->8--- now returns: --8<---------------cut here---------------start------------->8--- # Hey Emacs, this is a -*- sh -*- file ## .commonshrc --- Common features between (Linux and Cygwin) Bash and Z Shell # Copyright (C) 2009-<> echo "This is tangled... right..." echo "This is tangled as well... KO!" --8<---------------cut here---------------end--------------->8--- instead of what I expected: --8<---------------cut here---------------start------------->8--- # Hey Emacs, this is a -*- sh -*- file ## .commonshrc --- Common features between (Linux and Cygwin) Bash and Z Shell # Copyright (C) 2009-2014 echo "This is tangled... right..." --8<---------------cut here---------------end--------------->8--- Best regards, Seb -- Sebastien Vauban