From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ken Mankoff Subject: Re: Adding information to tangled code regarding org-source Date: Tue, 03 May 2016 21:23:49 -0400 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54054) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1axlY7-0001Ft-Tk for emacs-orgmode@gnu.org; Tue, 03 May 2016 21:24:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1axlXw-00054a-5y for emacs-orgmode@gnu.org; Tue, 03 May 2016 21:24:18 -0400 Received: from mail-qk0-x22f.google.com ([2607:f8b0:400d:c09::22f]:34830) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1axlXu-00050q-V2 for emacs-orgmode@gnu.org; Tue, 03 May 2016 21:24:12 -0400 Received: by mail-qk0-x22f.google.com with SMTP id j68so9196149qke.2 for ; Tue, 03 May 2016 18:23:56 -0700 (PDT) In-reply-to: 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: Ethan Ligon Cc: emacs-orgmode@gnu.org How about ":comments link" header arg? https://org-babel.readthedocs.io/en/latest/header-args/#comments -k. On 2016-05-03 at 17:33, Ethan Ligon wrote: > When one exports from org to, say, latex the resulting *.tex file > includes a comment at the top indicating the time of creation. This is > useful in part because it lets the user know that the *.tex file isn't > the original source. > > The same isn't true of tangled code from a source block, and I've been > repeatedly bitten by editing a file of python code that was tangled from a > source org file. > > I'd like to deal with this by making tangle emit a comment with > information about the org-source file. The :prologue header argument is > well suited to this; e.g., > > #+begin_src python :tangle /tmp/test.py :prologue (format "# Tangled from > %s on %s" (buffer-file-name) (current-time-string)) > print "Hello, world!" > #+end_src > > produces what one would want. > > I'd like to make this header argument be applied automatically. The > variable org-babel-default-header-args looks like just the ticket, but my > lame efforts to write the necessary emacs-lisp aren't working: > > #+BEGIN_SRC emacs-lisp > (add-to-list 'org-babel-default-header-args:python > '((:prologue . (format "# Tangled from %s on %s" (buffer- > file-name) (current-time-string))))) > #+END_SRC > > What am I doing wrong? > > Thanks for any help, > -Ethan