summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2009-10-17 17:43:48 +0200
committerCarsten Dominik <carsten.dominik@gmail.com>2009-10-17 17:43:48 +0200
commita752a22e2578c82e6c2b298fa3095b7c61acf32c (patch)
tree30259ba05b2dbe38d8d5eb90a35b652c55b44bba
parent1ad1de18be55b514d49fd8a28901601310257946 (diff)
downloadorg-mode-a752a22e2578c82e6c2b298fa3095b7c61acf32c.tar.gz
Fix customization type for `org-agenda-sorting-strategy'
Patch by Mikael Fornius.
-rwxr-xr-xlisp/ChangeLog8
-rw-r--r--lisp/org-agenda.el4
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c6db905..55b3bd7 100755
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
+2009-10-17 Carsten Dominik <carsten.dominik@gmail.com>
+
+ * org-agenda.el (org-agenda-sorting-strategy): Fix customization
+ type.
+
+ * org.el (org-pre-cycle-hook): Document that `empty' can also be
+ the value of ARG when doing local cycling.
+
2009-10-17 John Wiegley <johnw@newartisans.com>
* org-clock.el (org-clock-idle-time): New user customizable option
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index ac79e47..f61440b 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -991,7 +991,7 @@ categories by priority.
Instead of a single list, this can also be a set of list for specific
contents, with a context symbol in the car of the list, any of
-`agenda', `todo', `tags' for the corresponding agenda views.
+`agenda', `todo', `tags', `search' for the corresponding agenda views.
Custom commands can bind this variable in the options section."
:group 'org-agenda-sorting
@@ -1003,6 +1003,8 @@ Custom commands can bind this variable in the options section."
(cons (const :tag "Strategy for TODO lists" todo)
(repeat ,org-sorting-choice))
(cons (const :tag "Strategy for Tags matches" tags)
+ (repeat ,org-sorting-choice))
+ (cons (const :tag "Strategy for search matches" search)
(repeat ,org-sorting-choice)))))
(defcustom org-agenda-cmp-user-defined nil