Variable: org-babel-safe-header-args

org-babel-safe-header-args is a variable defined in ob-core.el.gz.

Value

(:cache :colnames :comments :exports :epilogue :hlines :noeval :noweb :noweb-ref :noweb-sep :noweb-prefix :padline :prologue :rownames :sep :session :tangle :wrap
	(:eval "never" "query")
	(:results lambda
		  (str)
		  (not
		   (string-match "file" str))))

Documentation

A list of safe header arguments for babel source blocks.

The list can have entries of the following forms:
- :ARG -> :ARG is always a safe header arg
- (:ARG . (VAL1 VAL2 ...)) -> :ARG is safe as a header arg if it is
                              equal to one of the VALs.
- (:ARG . FN) -> :ARG is safe as a header arg if the function FN
                              returns non-nil. FN is passed one
                              argument, the value of the header arg
                              (as a string).

Source Code

;; Defined in /usr/src/emacs/lisp/org/ob-core.el.gz
(defconst org-babel-safe-header-args
  '(:cache :colnames :comments :exports :epilogue :hlines :noeval
	   :noweb :noweb-ref :noweb-sep :noweb-prefix :padline
           :prologue :rownames :sep :session :tangle :wrap
	   (:eval . ("never" "query"))
	   (:results . (lambda (str) (not (string-match "file" str)))))
  "A list of safe header arguments for babel source blocks.

The list can have entries of the following forms:
- :ARG                     -> :ARG is always a safe header arg
- (:ARG . (VAL1 VAL2 ...)) -> :ARG is safe as a header arg if it is
                              `equal' to one of the VALs.
- (:ARG . FN)              -> :ARG is safe as a header arg if the function FN
                              returns non-nil.  FN is passed one
                              argument, the value of the header arg
                              (as a string).")