summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2010-04-25 23:56:37 +0200
committerCarsten Dominik <carsten.dominik@gmail.com>2010-04-25 23:56:37 +0200
commit5fd8d0ea333a451be4e0af4667be58e849c36af1 (patch)
tree60a4cf0cbb24a408b559c7ca037eb0f2304a77e0
parent3a62d5257076cd8eff470220917f4fcb8a88afbb (diff)
downloadorg-mode-5fd8d0ea333a451be4e0af4667be58e849c36af1.tar.gz
Fix docstring of `org-export-format-drawer-function'
Patch by Diego F. S. Ramos.
-rwxr-xr-xlisp/ChangeLog3
-rw-r--r--lisp/org-exp.el2
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6e0b624..3d43cc1 100755
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
2010-04-25 Carsten Dominik <carsten.dominik@gmail.com>
+ * org-exp.el (org-export-format-drawer-function): Fix
+ docstring.
+
* org-agenda.el (org-agenda-refile): New optional argument
NO-UPDATE.
(org-agenda-refile): Call `org-agenda-redo' unless NO-UPDATE
diff --git a/lisp/org-exp.el b/lisp/org-exp.el
index 44bde65..f467d57 100644
--- a/lisp/org-exp.el
+++ b/lisp/org-exp.el
@@ -1343,9 +1343,9 @@ the current file."
(defvar org-export-format-drawer-function nil
"Function to be called to format the contents of a drawer.
The function must accept three parameters:
- BACKEND one of the symbols html, docbook, latex, ascii, xoxo
NAME the drawer name, like \"PROPERTIES\"
CONTENT the content of the drawer.
+ BACKEND one of the symbols html, docbook, latex, ascii, xoxo
The function should return the text to be inserted into the buffer.
If this is nil, `org-export-format-drawer' is used as a default.")