0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-17 10:36:27 +00:00

Revert "making :results replace the default"

This reverts commit a13cbf64b6.

I'm in favour of this change, but it seems that we need a more sophisticated way of combining plists before we can
change the default header args in this way. Otherwise, we get two entries for :results (one from the defaults and one
from the header args), whereas what we want is a single entry for :results with space-separated values.
This commit is contained in:
Dan Davison 2009-07-05 21:23:47 -04:00
parent df3b1b7223
commit dc702a3152

View file

@ -49,7 +49,7 @@ then run `org-babel-pop-to-session'."
(add-hook 'org-metadown-hook 'org-babel-pop-to-session-maybe)
(defvar org-babel-default-header-args '((:session . "none") (:results . "replace"))
(defvar org-babel-default-header-args '((:session . "none"))
"Default arguments to use when evaluating a source block.")
(defvar org-babel-default-inline-header-args '((:results . "silent") (:exports . "results"))