summaryrefslogtreecommitdiff
path: root/lisp/ob-dot.el
diff options
context:
space:
mode:
authorTom Dye <tsd@tsdye.com>2010-07-13 16:04:47 -0700
committerEric Schulte <schulte.eric@gmail.com>2010-07-13 16:04:47 -0700
commit3807787aa99797798db2663f49c8fae9dfa9718e (patch)
tree1c08075601e6c012977acf0342ff4c30418d093e /lisp/ob-dot.el
parentc6403e0274d6e4fe9df0b5cc132c5379f50ec3d9 (diff)
More docstring edits
Diffstat (limited to 'lisp/ob-dot.el')
-rw-r--r--lisp/ob-dot.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/ob-dot.el b/lisp/ob-dot.el
index 26db2d375..edf8f90f4 100644
--- a/lisp/ob-dot.el
+++ b/lisp/ob-dot.el
@@ -50,8 +50,8 @@
"Expand BODY according to PARAMS, return the expanded body." body)
(defun org-babel-execute:dot (body params)
- "Execute a block of Dot code with org-babel. This function is
-called by `org-babel-execute-src-block'."
+ "Execute a block of Dot code with org-babel.
+This function is called by `org-babel-execute-src-block'."
(let ((result-params (split-string (or (cdr (assoc :results params)) "")))
(out-file (cdr (assoc :file params)))
(cmdline (cdr (assoc :cmdline params)))
@@ -62,7 +62,7 @@ called by `org-babel-execute-src-block'."
out-file))
(defun org-babel-prep-session:dot (session params)
- "Prepare SESSION according to the contents of PARAMS."
+ "Return an error because Dot does not support sessions."
(error "Dot does not support sessions"))
(provide 'ob-dot)