summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2012-11-05 15:44:46 +0100
committerNicolas Goaziou <n.goaziou@gmail.com>2012-11-05 15:44:46 +0100
commit1896fc352f3447a4f7c636d5e5c1630b578717cf (patch)
tree9e9b22d0fa126d1fcbb5dc38f6a0418ae8fb1cd4
parent11c5faa7dd9b8f722b690e8d9833fd6e01a0bb59 (diff)
downloadorg-mode-1896fc352f3447a4f7c636d5e5c1630b578717cf.tar.gz
org-e-ascii: Fix docstring
* contrib/lisp/org-e-ascii.el (org-e-ascii-format-drawer-function): Fix docstring.
-rw-r--r--contrib/lisp/org-e-ascii.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/lisp/org-e-ascii.el b/contrib/lisp/org-e-ascii.el
index b352674..46906c3 100644
--- a/contrib/lisp/org-e-ascii.el
+++ b/contrib/lisp/org-e-ascii.el
@@ -308,7 +308,7 @@ Otherwise, place it right after it."
(defcustom org-e-ascii-format-drawer-function nil
"Function called to format a drawer in ASCII.
-The function must accept two parameters:
+The function must accept three parameters:
NAME the drawer name, like \"LOGBOOK\"
CONTENTS the contents of the drawer.
WIDTH the text width within the drawer.
@@ -319,9 +319,9 @@ nil to ignore the drawer.
For example, the variable could be set to the following function
in order to mimic default behaviour:
-\(defun org-e-ascii-format-drawer-default \(name contents width\)
+\(defun org-e-ascii-format-drawer-default (name contents width)
\"Format a drawer element for ASCII export.\"
- contents\)"
+ contents)"
:group 'org-export-e-ascii
:type 'function)