ソースを参照

babel: Make `org-babel-execute-subtree' support prefix arg

	* ob.el (org-babel-execute-subtree): Pass prefix arg through
	to `org-babel-execute-src-block'
Dan Davison 14 年 前
コミット
d9ca67496f
1 ファイル変更1 行追加1 行削除
  1. 1 1
      lisp/ob.el

+ 1 - 1
lisp/ob.el

@@ -583,7 +583,7 @@ the current subtree."
   (save-restriction
     (save-excursion
       (org-narrow-to-subtree)
-      (org-babel-execute-buffer)
+      (org-babel-execute-buffer arg)
       (widen))))
 
 ;;;###autoload