From a599bca287fe381c5eebfe1d265fa00c2046a858 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Tue, 10 Feb 2009 20:10:49 +0100 Subject: [PATCH] Agenda: Add new skip conditions to choose menu. --- lisp/ChangeLog | 3 +++ lisp/org-agenda.el | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 42b24516a..577e2df67 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2009-02-10 Carsten Dominik + * org-agenda.el (org-agenda-custom-commands-local-options): Add + timestamp and nottimestamp to the chooe menu. + * org.el (org-save-all-org-buffers): Moved here from org-agenda.el. (org-revert-all-org-buffers): New command. diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 7d05197a6..e6bf93c7d 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -219,7 +219,9 @@ you can \"misuse\" it to also add other text to the header. However, (const :tag "scheduled" 'scheduled) (const :tag "not scheduled" 'notscheduled) (const :tag "deadline" 'deadline) - (const :tag "no deadline" 'notdeadline)))))) + (const :tag "no deadline" 'notdeadline) + (const :tag "timestamp" 'timestamp) + (const :tag "no timestamp" 'nottimestamp)))))) (list :tag "Non-standard skipping condition" :value (org-agenda-skip-function) (const org-agenda-skip-function) -- 2.11.4.GIT