浏览代码

Fix docstring of `org-export-format-drawer-function'

Patch by Diego F. S. Ramos.
Carsten Dominik 15 年之前
父节点
当前提交
5fd8d0ea33
共有 2 个文件被更改,包括 4 次插入1 次删除
  1. 3 0
      lisp/ChangeLog
  2. 1 1
      lisp/org-exp.el

+ 3 - 0
lisp/ChangeLog

@@ -1,5 +1,8 @@
 2010-04-25  Carsten Dominik  <carsten.dominik@gmail.com>
 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
 	* org-agenda.el (org-agenda-refile): New optional argument
 	NO-UPDATE.
 	NO-UPDATE.
 	(org-agenda-refile): Call `org-agenda-redo' unless NO-UPDATE
 	(org-agenda-refile): Call `org-agenda-redo' unless NO-UPDATE

+ 1 - 1
lisp/org-exp.el

@@ -1343,9 +1343,9 @@ the current file."
 (defvar org-export-format-drawer-function nil
 (defvar org-export-format-drawer-function nil
   "Function to be called to format the contents of a drawer.
   "Function to be called to format the contents of a drawer.
 The function must accept three parameters:
 The function must accept three parameters:
-  BACKEND  one of the symbols html, docbook, latex, ascii, xoxo
   NAME     the drawer name, like \"PROPERTIES\"
   NAME     the drawer name, like \"PROPERTIES\"
   CONTENT  the content of the drawer.
   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.
 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.")
 If this is nil, `org-export-format-drawer' is used as a default.")