Re: [O] ELisp expression in a var not executed anymore on tangle

2015-07-03 Thread Nicolas Goaziou
Hello, Sebastien Vauban writes: > I noticed that the following code block: > > #+begin_src shell :tangle yes :var workingDir=(file-name-directory (or > load-file-name (buffer-file-name))) :shebang #!/bin/sh > cmd="$EMACS -q -l ${workingDir}init.el" > #+end_src > > does now return this: > > #!

[O] ELisp expression in a var not executed anymore on tangle

2015-07-03 Thread Sebastien Vauban
Hello, I noticed that the following code block: --8<---cut here---start->8--- #+begin_src shell :tangle yes :var workingDir=(file-name-directory (or load-file-name (buffer-file-name))) :shebang #!/bin/sh cmd="$EMACS -q -l ${workingDir}init.el" #+end_src --8<--