From mboxrd@z Thu Jan 1 00:00:00 1970 From: Olaf Dietsche Subject: Re: org-mode and remind integration Date: Tue, 13 Jan 2009 22:06:16 +0100 Message-ID: <87ab9u531z.fsf@rat.lan> References: <6ac505ad0812310353yedc8ac6x4e59dc377a6d009b@mail.gmail.com> <368A47AA-30D5-40B0-9ECD-57B0361B89AA@uva.nl> <6ac505ad0901090057x40d163edr1366a45fb08ed405@mail.gmail.com> <87d4ew5yse.fsf@rat.lan> <6ac505ad0901100521n7562cc33y942b3bf131621fd4@mail.gmail.com> <87wsd2508n.fsf@rat.lan> <6ac505ad0901111219k14af64fevd74608b6a806d813@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LMqTM-0007Bw-Rp for emacs-orgmode@gnu.org; Tue, 13 Jan 2009 16:06:52 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LMqTK-0007B4-Ng for Emacs-orgmode@gnu.org; Tue, 13 Jan 2009 16:06:52 -0500 Received: from [199.232.76.173] (port=59801 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LMqTK-0007Aw-IK for Emacs-orgmode@gnu.org; Tue, 13 Jan 2009 16:06:50 -0500 Received: from www85.your-server.de ([213.133.104.85]:50896) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LMqTK-0006vH-4g for Emacs-orgmode@gnu.org; Tue, 13 Jan 2009 16:06:50 -0500 In-Reply-To: <6ac505ad0901111219k14af64fevd74608b6a806d813@mail.gmail.com> (Daniel Martins's message of "Sun\, 11 Jan 2009 18\:19\:20 -0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Daniel Martins Cc: bastien.guerry@ens.fr, Emacs-orgmode@gnu.org "Daniel Martins" 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