Am 05.04.2013 19:14, schrieb Bastien:
Hi Andreas,

Andreas Röhler <andreas.roeh...@easy-emacs.de> writes:

http://orgmode.org/manual/System_002dwide-header-arguments.html#System_002dwide-header-arguments
Org Mode Info
System-wide header arguments
............................

System-wide values of header arguments can be specified by customizing
the `org-babel-default-header-args' variable:

;;;;;

Seems not the case as in ob-core.el

(defvar org-babel-default-header-args

;;;;;

Not sure what you mean -- do you mean that saying "customizing" in the
manual is not appropriate because `org-babel-default-header-args' is a
variable (defvar) and not an option (defcustom)?

Thanks for further clarification!


Hi Bastien,

customization needs a defcustom, not a defvar

(defvar org-babel-default-header-args
  '((:session . "none") (:results . "replace") (:exports . "code")
    (:cache . "no") (:noweb . "no") (:hlines . "no") (:tangle . "no")
    (:padnewline . "yes"))
  "Default arguments to use when evaluating a source block.")

This var user can't customize, as Info tells falsely.

Cheers,

Andreas


Reply via email to