瀏覽代碼

rm meaningless ":padnewlines" from default header args

* lisp/ob-core.el (org-babel-default-header-args): It is likely that
  someone meant to set :padlines to "yes", but accidentally set
  :padnewlines to "yes".  Either way lets just remove this which
  shouldn't have any functional effect.
Eric Schulte 11 年之前
父節點
當前提交
39a97fcf03
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      lisp/ob-core.el

+ 1 - 2
lisp/ob-core.el

@@ -478,8 +478,7 @@ specific header arguments as well.")
 
 
 (defvar org-babel-default-header-args
 (defvar org-babel-default-header-args
   '((:session . "none") (:results . "replace") (:exports . "code")
   '((:session . "none") (:results . "replace") (:exports . "code")
-    (:cache . "no") (:noweb . "no") (:hlines . "no") (:tangle . "no")
+    (:cache . "no") (:noweb . "no") (:hlines . "no") (:tangle . "no"))
-    (:padnewline . "yes"))
   "Default arguments to use when evaluating a source block.")
   "Default arguments to use when evaluating a source block.")
 
 
 (defvar org-babel-default-inline-header-args
 (defvar org-babel-default-inline-header-args