* BUG: missing ' in org-agenda-skip-* docstrings
@ 2007-12-31 13:49 Adam Spiers
2007-12-31 13:52 ` Adam Spiers
2008-01-03 7:45 ` Carsten Dominik
0 siblings, 2 replies; 4+ messages in thread
From: Adam Spiers @ 2007-12-31 13:49 UTC (permalink / raw)
To: org-mode mailing list
http://www.adamspiers.org/cgi-bin/hg.cgi/org-atlantic/rev/fb36fb4548b2
# HG changeset patch
# User Adam Spiers <orgmode@adamspiers.org>
# Date 1199108855 0
# Node ID fb36fb4548b2f886ef0ecb7fc14daaeca39762a4
# Parent 5b1e541ddd0e043c55aea3e1e164bf115e01a4e9
fix org-agenda-skip-* docstrings
diff -r 5b1e541ddd0e -r fb36fb4548b2 org.el
--- a/org.el Mon Dec 31 12:06:34 2007 +0000
+++ b/org.el Mon Dec 31 13:47:35 2007 +0000
@@ -20430,12 +20430,12 @@ to skip this subtree. This is a functio
(defun org-agenda-skip-entry-if (&rest conditions)
"Skip entry if any of CONDITIONS is true.
-See `org-agenda-skip-if for details."
+See `org-agenda-skip-if' for details."
(org-agenda-skip-if nil conditions))
(defun org-agenda-skip-subtree-if (&rest conditions)
"Skip entry if any of CONDITIONS is true.
-See `org-agenda-skip-if for details."
+See `org-agenda-skip-if' for details."
(org-agenda-skip-if t conditions))
(defun org-agenda-skip-if (subtree conditions)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: BUG: missing ' in org-agenda-skip-* docstrings
2007-12-31 13:49 BUG: missing ' in org-agenda-skip-* docstrings Adam Spiers
@ 2007-12-31 13:52 ` Adam Spiers
2008-01-03 7:46 ` Carsten Dominik
2008-01-03 7:45 ` Carsten Dominik
1 sibling, 1 reply; 4+ messages in thread
From: Adam Spiers @ 2007-12-31 13:52 UTC (permalink / raw)
To: emacs-orgmode
And another ...
http://www.adamspiers.org/cgi-bin/hg.cgi/org-atlantic/rev/eeeab6022608
# HG changeset patch
# User Adam Spiers <orgmode@adamspiers.org>
# Date 1199109084 0
# Node ID eeeab6022608fcb4348ddadcd595b20b3a524ecc
# Parent fb36fb4548b2f886ef0ecb7fc14daaeca39762a4
fix org-agenda-skip-if typos
diff -r fb36fb4548b2 -r eeeab6022608 org.el
--- a/org.el Mon Dec 31 13:47:35 2007 +0000
+++ b/org.el Mon Dec 31 13:51:24 2007 +0000
@@ -20453,8 +20453,8 @@ regexp Check if regexp matches
regexp Check if regexp matches
notregexp Check if regexp does not match.
-The regexp is taken from the conditions list, it must com right after the
-`regexp' of `notregexp' element.
+The regexp is taken from the conditions list, it must come right after the
+`regexp' or `notregexp' element.
If any of these conditions is met, this function returns the end point of
the entity, causing the search to continue from there. This is a function
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: BUG: missing ' in org-agenda-skip-* docstrings
2007-12-31 13:49 BUG: missing ' in org-agenda-skip-* docstrings Adam Spiers
2007-12-31 13:52 ` Adam Spiers
@ 2008-01-03 7:45 ` Carsten Dominik
1 sibling, 0 replies; 4+ messages in thread
From: Carsten Dominik @ 2008-01-03 7:45 UTC (permalink / raw)
To: Adam Spiers; +Cc: org-mode mailing list
Applied, thanks.
- Carsten
On Dec 31, 2007, at 2:49 PM, Adam Spiers wrote:
> http://www.adamspiers.org/cgi-bin/hg.cgi/org-atlantic/rev/fb36fb4548b2
>
> # HG changeset patch
> # User Adam Spiers <orgmode@adamspiers.org>
> # Date 1199108855 0
> # Node ID fb36fb4548b2f886ef0ecb7fc14daaeca39762a4
> # Parent 5b1e541ddd0e043c55aea3e1e164bf115e01a4e9
> fix org-agenda-skip-* docstrings
>
> diff -r 5b1e541ddd0e -r fb36fb4548b2 org.el
> --- a/org.el Mon Dec 31 12:06:34 2007 +0000
> +++ b/org.el Mon Dec 31 13:47:35 2007 +0000
> @@ -20430,12 +20430,12 @@ to skip this subtree. This is a functio
>
> (defun org-agenda-skip-entry-if (&rest conditions)
> "Skip entry if any of CONDITIONS is true.
> -See `org-agenda-skip-if for details."
> +See `org-agenda-skip-if' for details."
> (org-agenda-skip-if nil conditions))
>
> (defun org-agenda-skip-subtree-if (&rest conditions)
> "Skip entry if any of CONDITIONS is true.
> -See `org-agenda-skip-if for details."
> +See `org-agenda-skip-if' for details."
> (org-agenda-skip-if t conditions))
>
> (defun org-agenda-skip-if (subtree conditions)
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: BUG: missing ' in org-agenda-skip-* docstrings
2007-12-31 13:52 ` Adam Spiers
@ 2008-01-03 7:46 ` Carsten Dominik
0 siblings, 0 replies; 4+ messages in thread
From: Carsten Dominik @ 2008-01-03 7:46 UTC (permalink / raw)
To: Adam Spiers; +Cc: emacs-orgmode
Applied, thanks.
- Carsten
On Dec 31, 2007, at 2:52 PM, Adam Spiers wrote:
> And another ...
>
> http://www.adamspiers.org/cgi-bin/hg.cgi/org-atlantic/rev/eeeab6022608
>
> # HG changeset patch
> # User Adam Spiers <orgmode@adamspiers.org>
> # Date 1199109084 0
> # Node ID eeeab6022608fcb4348ddadcd595b20b3a524ecc
> # Parent fb36fb4548b2f886ef0ecb7fc14daaeca39762a4
> fix org-agenda-skip-if typos
>
> diff -r fb36fb4548b2 -r eeeab6022608 org.el
> --- a/org.el Mon Dec 31 13:47:35 2007 +0000
> +++ b/org.el Mon Dec 31 13:51:24 2007 +0000
> @@ -20453,8 +20453,8 @@ regexp Check if regexp matches
> regexp Check if regexp matches
> notregexp Check if regexp does not match.
>
> -The regexp is taken from the conditions list, it must com right
> after the
> -`regexp' of `notregexp' element.
> +The regexp is taken from the conditions list, it must come right
> after the
> +`regexp' or `notregexp' element.
>
> If any of these conditions is met, this function returns the end
> point of
> the entity, causing the search to continue from there. This is a
> function
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-01-03 8:21 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-31 13:49 BUG: missing ' in org-agenda-skip-* docstrings Adam Spiers
2007-12-31 13:52 ` Adam Spiers
2008-01-03 7:46 ` Carsten Dominik
2008-01-03 7:45 ` Carsten Dominik
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).