diff options
| author | Lars Magne Ingebrigtsen | 2011-07-12 14:39:51 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-07-12 14:39:51 +0200 |
| commit | 6d72f719e5e6ae1106e4a3101ab22bedbbf8407c (patch) | |
| tree | 8f637b5f5ed296963facac3873c4dda2bc96dec0 | |
| parent | f5242a022f62b577e97faa2dc062936b107fe8b7 (diff) | |
| download | emacs-6d72f719e5e6ae1106e4a3101ab22bedbbf8407c.tar.gz emacs-6d72f719e5e6ae1106e4a3101ab22bedbbf8407c.zip | |
* org.texi (Special agenda views): Fix double quoting.
Fixes: debbugs:3509
| -rw-r--r-- | doc/misc/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/misc/org.texi | 20 |
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 @@ | |||
| 1 | 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * org.texi (Special agenda views): Fix double quoting (bug#3509). | ||
| 4 | |||
| 1 | 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org> | 5 | 2011-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} | |||
| 13981 | and @code{org-agenda-skip-subtree-if} in this form, for example: | 13981 | and @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) |
| 13985 | Skip current entry if it has been scheduled. | 13985 | Skip current entry if it has been scheduled. |
| 13986 | @item '(org-agenda-skip-entry-if 'notscheduled) | 13986 | @item (org-agenda-skip-entry-if 'notscheduled) |
| 13987 | Skip current entry if it has not been scheduled. | 13987 | Skip current entry if it has not been scheduled. |
| 13988 | @item '(org-agenda-skip-entry-if 'deadline) | 13988 | @item (org-agenda-skip-entry-if 'deadline) |
| 13989 | Skip current entry if it has a deadline. | 13989 | Skip 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) |
| 13991 | Skip current entry if it has a deadline, or if it is scheduled. | 13991 | Skip 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")) |
| 13993 | Skip current entry if the TODO keyword is TODO or WAITING. | 13993 | Skip 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) |
| 13995 | Skip current entry if the TODO keyword marks a DONE state. | 13995 | Skip 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) |
| 13997 | Skip current entry if it has any timestamp, may also be deadline or scheduled. | 13997 | Skip 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") |
| 13999 | Skip current entry if the regular expression matches in the entry. | 13999 | Skip 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") |
| 14001 | Skip current entry unless the regular expression matches. | 14001 | Skip 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") |
| 14003 | Same as above, but check and skip the entire subtree. | 14003 | Same as above, but check and skip the entire subtree. |
| 14004 | @end table | 14004 | @end table |
| 14005 | 14005 | ||