babel: Make colnames header arg expect use "yes" for true.
This commit is contained in:
parent
4064c31fa7
commit
5833fbd358
|
@ -44,7 +44,8 @@ called by `org-babel-execute-src-block'."
|
||||||
(result-type (fourth processed-params))
|
(result-type (fourth processed-params))
|
||||||
(session (org-babel-R-initiate-session (first processed-params)))
|
(session (org-babel-R-initiate-session (first processed-params)))
|
||||||
(vars (second processed-params))
|
(vars (second processed-params))
|
||||||
(column-names-p (cdr (assoc :colnames params)))
|
(column-names-p (and (cdr (assoc :colnames params))
|
||||||
|
(string= "yes" (cdr (assoc :colnames params)))))
|
||||||
(out-file (cdr (assoc :file params)))
|
(out-file (cdr (assoc :file params)))
|
||||||
(augmented-body
|
(augmented-body
|
||||||
(concat
|
(concat
|
||||||
|
|
Loading…
Reference in New Issue