org-agenda.el (org-cmp-effort): Fix docstring.

* org-agenda.el (org-cmp-effort): Fix docstring.
This commit is contained in:
Bastien Guerry 2011-08-16 16:16:43 +02:00
parent b6fab3770b
commit afa408dcd6
1 changed files with 1 additions and 1 deletions

View File

@ -5832,7 +5832,7 @@ could bind the variable in the options section of a custom command.")
(t nil))))
(defsubst org-cmp-effort (a b)
"Compare the priorities of string A and B."
"Compare the effort values of string A and B."
(let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
(ea (or (get-text-property 1 'effort-minutes a) def))
(eb (or (get-text-property 1 'effort-minutes b) def)))