[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Orgmode] Re: org-mode and remind integration
From: |
Olaf Dietsche |
Subject: |
[Orgmode] Re: org-mode and remind integration |
Date: |
Tue, 13 Jan 2009 22:06:16 +0100 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/22.2 (gnu/linux) |
"Daniel Martins" <address@hidden> writes:
> I did your test wuth a null regexp
>
> It is a regexp problem!
>
> Org-mode has two variables: org-deadline-string and org-scheduled-string
> (see below)
>
> and I want to match tasks which have a timestamp, ie satisfies the
> org-ts-regexp2
>
> BUT DO NOT have org-deadline-string NOR org-scheduled-string
>
> I tried
>
> (org2rem-pure-timestamps-string
> (concat "\\(" org-deadline-string "\\|"
> org-scheduled-string "\\)\\{0\\}"))
>
> in order that a regexp such as
>
> "\\(org-deadline-string\\|org-scheduled-string\\)\\{0\\}"
>
> would match only zero {0} occurrences of
> (org-deadline-string|org-scheduled-string)
> but this seems to be a mistake.
>
> Any hint??
I can only suggest the empty regexp, as before:
(org2rem-pure-timestamps-string "")
If this doesn't work, I don't know.
Regards, Olaf