浏览代码

org-table.el (orgtbl-apply-fmt): Enhance docstring

* org-table.el (orgtbl-apply-fmt): Enhance docstring.
Bastien Guerry 12 年之前
父节点
当前提交
0625b53a07
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      lisp/org-table.el

+ 2 - 1
lisp/org-table.el

@@ -4612,7 +4612,8 @@ First element has index 0, or I0 if given."
     fmt))
 
 (defsubst orgtbl-apply-fmt (fmt &rest args)
-  "Apply format FMT to the arguments.  NIL FMTs return the first argument."
+  "Apply format FMT to arguments ARGS.
+When FMT is nil, return the first argument from ARGS."
   (cond ((functionp fmt) (apply fmt args))
 	(fmt (apply 'format fmt args))
 	(args (car args))