summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <schulte.eric@gmail.com>2010-01-11 08:47:29 -0700
committerEric Schulte <schulte.eric@gmail.com>2010-01-11 08:47:29 -0700
commit1e8107faf725e287a2b648618a46d65e2ed24eaa (patch)
tree21c4ad4715801657a5b9fd768f3ef8a9be8cd5a9
parent566f88e348b9cdb175934884b8c2b4da8e896d56 (diff)
downloadorg-mode-1e8107faf725e287a2b648618a46d65e2ed24eaa.tar.gz
babel: improve doc strings for org-babel-execute-buffer and org-babel-execute-subtree
-rw-r--r--contrib/babel/lisp/org-babel.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/babel/lisp/org-babel.el b/contrib/babel/lisp/org-babel.el
index 74bf596..e3ce6b1 100644
--- a/contrib/babel/lisp/org-babel.el
+++ b/contrib/babel/lisp/org-babel.el
@@ -294,7 +294,8 @@ results already exist."
t)))
(defun org-babel-execute-buffer (&optional arg)
- "Replace EVAL snippets in the entire buffer."
+ "Call `org-babel-execute-src-block' on every source block in
+the current buffer."
(interactive "P")
(save-excursion
(goto-char (point-min))
@@ -304,7 +305,8 @@ results already exist."
(goto-char (match-end 0)))))
(defun org-babel-execute-subtree (&optional arg)
- "Replace EVAL snippets in the entire subtree."
+ "Call `org-babel-execute-src-block' on every source block in
+the current subtree."
(interactive "P")
(save-excursion
(org-narrow-to-subtree)