0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-24 18:02:53 +00:00

Agenda: Add new skip conditions to choose menu.

This commit is contained in:
Carsten Dominik 2009-02-10 20:10:49 +01:00
parent ce42b4be86
commit a599bca287
2 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2009-02-10 Carsten Dominik <carsten.dominik@gmail.com>
* 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.

View file

@ -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)