Browse Source

org-babel: added :session to the header-arguments allowed in headline properties

Eric Schulte 15 years ago
parent
commit
27df66d8da
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contrib/babel/lisp/org-babel.el

+ 1 - 1
contrib/babel/lisp/org-babel.el

@@ -361,7 +361,7 @@ may be specified in the properties of the current outline entry."
                (when val
                  ;; (message "param-from-property %s=%s" header-arg val) ;; debugging statement
                  (cons (intern (concat ":" header-arg)) val))))
-           '("results" "exports" "tangle" "var")))))
+           '("exports" "results" "session" "tangle" "var")))))
 
 (defun org-babel-parse-src-block-match ()
   (let* ((lang (org-babel-clean-text-properties (match-string 1)))