From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Sebastien Vauban" Subject: [babel] Loosing my latin... Date: Thu, 24 Nov 2011 16:42:29 +0100 Message-ID: <80bos15xy2.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, While this code block gets evaluated as expected... #+begin_src emacs-lisp :var foo=11 bar=22 (+ foo bar) #+end_src #+results: : 33 It's not the same with the 2 following ones: variables `bar' and `baz' are said to be void. ** NOK With property #+property: var bar=44 #+begin_src emacs-lisp (+ bar bar) #+end_src ** NOK With headers #+headers: var baz=55 #+begin_src emacs-lisp (+ baz baz) #+end_src Am I missing something really obvious??[1] Best regards, Seb Footnotes: [1] Org-mode version 7.7 (release_7.7.600.gb331.dirty), up-to-date at the time of writing this. -- Sebastien Vauban