Browse Source

Rename function in example in documentation.

Rick Moynihan noticed that a function name in an example does not
reflect correctly the purpose of this function, which does skip all
entries that do not have a WAITING tag.

This patch renames the function to remedy  this situation.
Carsten Dominik 16 years ago
parent
commit
5fea9b1e42
1 changed files with 1 additions and 1 deletions
  1. 1 1
      doc/org.texi

+ 1 - 1
doc/org.texi

@@ -9539,7 +9539,7 @@ like this:
 @lisp
 (org-add-agenda-custom-command
  '("b" todo "PROJECT"
-   ((org-agenda-skip-function 'my-org-waiting-projects)
+   ((org-agenda-skip-function 'my-skip-unless-waiting)
     (org-agenda-overriding-header "Projects waiting for something: "))))
 @end lisp