aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2011-07-12 14:39:51 +0200
committerLars Magne Ingebrigtsen2011-07-12 14:39:51 +0200
commit6d72f719e5e6ae1106e4a3101ab22bedbbf8407c (patch)
tree8f637b5f5ed296963facac3873c4dda2bc96dec0
parentf5242a022f62b577e97faa2dc062936b107fe8b7 (diff)
downloademacs-6d72f719e5e6ae1106e4a3101ab22bedbbf8407c.tar.gz
emacs-6d72f719e5e6ae1106e4a3101ab22bedbbf8407c.zip
* org.texi (Special agenda views): Fix double quoting.
Fixes: debbugs:3509
-rw-r--r--doc/misc/ChangeLog4
-rw-r--r--doc/misc/org.texi20
2 files changed, 14 insertions, 10 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index a977b9d2f7f..3738301ceea 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,7 @@
12011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * org.texi (Special agenda views): Fix double quoting (bug#3509).
4
12011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org> 52011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 6
3 * ediff.texi (Major Entry Points): Remove mention of `require', 7 * ediff.texi (Major Entry Points): Remove mention of `require',
diff --git a/doc/misc/org.texi b/doc/misc/org.texi
index a0ec20c4034..8e01a10bde3 100644
--- a/doc/misc/org.texi
+++ b/doc/misc/org.texi
@@ -13981,25 +13981,25 @@ particular, you may use the functions @code{org-agenda-skip-entry-if}
13981and @code{org-agenda-skip-subtree-if} in this form, for example: 13981and @code{org-agenda-skip-subtree-if} in this form, for example:
13982 13982
13983@table @code 13983@table @code
13984@item '(org-agenda-skip-entry-if 'scheduled) 13984@item (org-agenda-skip-entry-if 'scheduled)
13985Skip current entry if it has been scheduled. 13985Skip current entry if it has been scheduled.
13986@item '(org-agenda-skip-entry-if 'notscheduled) 13986@item (org-agenda-skip-entry-if 'notscheduled)
13987Skip current entry if it has not been scheduled. 13987Skip current entry if it has not been scheduled.
13988@item '(org-agenda-skip-entry-if 'deadline) 13988@item (org-agenda-skip-entry-if 'deadline)
13989Skip current entry if it has a deadline. 13989Skip current entry if it has a deadline.
13990@item '(org-agenda-skip-entry-if 'scheduled 'deadline) 13990@item (org-agenda-skip-entry-if 'scheduled 'deadline)
13991Skip current entry if it has a deadline, or if it is scheduled. 13991Skip current entry if it has a deadline, or if it is scheduled.
13992@item '(org-agenda-skip-entry-if 'todo '("TODO" "WAITING")) 13992@item (org-agenda-skip-entry-if 'todo '("TODO" "WAITING"))
13993Skip current entry if the TODO keyword is TODO or WAITING. 13993Skip current entry if the TODO keyword is TODO or WAITING.
13994@item '(org-agenda-skip-entry-if 'todo 'done) 13994@item (org-agenda-skip-entry-if 'todo 'done)
13995Skip current entry if the TODO keyword marks a DONE state. 13995Skip current entry if the TODO keyword marks a DONE state.
13996@item '(org-agenda-skip-entry-if 'timestamp) 13996@item (org-agenda-skip-entry-if 'timestamp)
13997Skip current entry if it has any timestamp, may also be deadline or scheduled. 13997Skip current entry if it has any timestamp, may also be deadline or scheduled.
13998@item '(org-agenda-skip-entry 'regexp "regular expression") 13998@item (org-agenda-skip-entry 'regexp "regular expression")
13999Skip current entry if the regular expression matches in the entry. 13999Skip current entry if the regular expression matches in the entry.
14000@item '(org-agenda-skip-entry 'notregexp "regular expression") 14000@item (org-agenda-skip-entry 'notregexp "regular expression")
14001Skip current entry unless the regular expression matches. 14001Skip current entry unless the regular expression matches.
14002@item '(org-agenda-skip-subtree-if 'regexp "regular expression") 14002@item (org-agenda-skip-subtree-if 'regexp "regular expression")
14003Same as above, but check and skip the entire subtree. 14003Same as above, but check and skip the entire subtree.
14004@end table 14004@end table
14005 14005