summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-03-11 18:18:11 +0100
committerBastien Guerry <bzg@altern.org>2013-03-11 18:18:11 +0100
commit9e00635699c56b575a99e14067fb5aaecfd969c0 (patch)
tree4abff506fd3a2a5cff09a2b2bb5bf554d91e45db
parent0c7e2cf500339c34a18528680d90994b44a87b8e (diff)
downloadorg-mode-9e00635699c56b575a99e14067fb5aaecfd969c0.tar.gz
org-agenda.el (org-sorting-choice): Fix default value
* org-agenda.el (org-sorting-choice): Fix default value.
-rw-r--r--lisp/org-agenda.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 1d49c98..70f2016 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -242,6 +242,11 @@ you can \"misuse\" it to also add other text to the header."
(defconst org-sorting-choice
'(choice
(const time-up) (const time-down)
+ (const timestamp-up) (const timestamp-down)
+ (const scheduled-up) (const scheduled-down)
+ (const deadline-up) (const deadline-down)
+ (const ts-up) (const ts-down)
+ (const tsia-up) (const tsia-down)
(const category-keep) (const category-up) (const category-down)
(const tag-down) (const tag-up)
(const priority-up) (const priority-down)