1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-11-23 07:18:53 +00:00
* ob-org.el (org-babel-org-export): typo in docstring

	* ob-eval.el (org-babel-eval): typo in docstring
This commit is contained in:
Dan Davison 2010-09-21 00:40:47 +01:00
parent 757312dde3
commit 03b0360ded
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@
(defun org-babel-eval (cmd body)
"Run CMD on BODY.
If CMD succeeds then return it's results, otherwise display
If CMD succeeds then return its results, otherwise display
STDERR with `org-babel-eval-error-notify'."
(let ((err-buff (get-buffer-create "*Org-Babel Error*")) exit-code)
(with-current-buffer err-buff (erase-buffer))

View File

@ -67,7 +67,7 @@ This function is called by `org-babel-execute-src-block'."
(org-load-modules-maybe)
(unless org-local-vars
(setq org-local-vars (org-get-local-variables)))
(eval ;; convert to fmt -- mimicing `org-run-like-in-org-mode'
(eval ;; convert to fmt -- mimicking `org-run-like-in-org-mode'
(list 'let org-local-vars
(list (intern (concat "org-export-as-" fmt))
nil nil nil ''string t))))))