summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2011-08-16 16:16:43 +0200
committerBastien Guerry <bzg@altern.org>2011-08-16 16:16:43 +0200
commitafa408dcd6eceefe4bc5c9b62971a989920c5a7f (patch)
tree6dbb75a9bec3200469c107cffe2add1e0132cce1
parentb6fab3770bf4d22b05f7ef55e83a019aa70844b4 (diff)
downloadorg-mode-afa408dcd6eceefe4bc5c9b62971a989920c5a7f.tar.gz
org-agenda.el (org-cmp-effort): Fix docstring.
* org-agenda.el (org-cmp-effort): Fix docstring.
-rw-r--r--lisp/org-agenda.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 7bcf807..3c9cd4f 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -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)))