From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Amann Subject: Re: Surprising behaviour with agenda file Date: Thu, 29 Sep 2011 16:48:59 +0100 Message-ID: <8762kb2vtg.fsf@msstf091.ucc.ie> References: <874nzvilx1.fsf@msstf091.ucc.ie> <201109291525.15053.DanielBausch@gmx.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:42517) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R9IrA-0007cZ-FI for emacs-orgmode@gnu.org; Thu, 29 Sep 2011 11:49:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R9Ir9-00063r-5y for emacs-orgmode@gnu.org; Thu, 29 Sep 2011 11:49:04 -0400 Received: from mail4.ucc.ie ([143.239.1.34]:42817) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R9Ir8-00063g-RX for emacs-orgmode@gnu.org; Thu, 29 Sep 2011 11:49:03 -0400 In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Michael Brand Cc: emacs-orgmode@gnu.org On Thu, 29 Sep 2011 15:43:27 +0200, Michael Brand wrote: > On Thu, Sep 29, 2011 at 15:25, Daniel Bausch wrote: > > It's not a bug, it's a feature (although I don't know what it's for -- = maybe > > speed). =C2=A0However, there is a customizable option to switch it off: > > org-agenda-skip-additional-timestamps-same-entry >=20 > Interesting. git blame and a list search leads quickly to this post > and thread that answers some questions: > http://thread.gmane.org/gmane.emacs.orgmode/13096/focus=3D13129 Okay, I see. In my opinion the current default is unsafe, since people can lose appointments.=20 I propose to change the default of org-agenda-skip-additional-timestamps-same-entry=20 as below. Andreas -------------------------------- commit 967ee90b3b05bad69b84fa3e5411f2d645121d6a Author: Andreas Amann Date: Thu Sep 29 16:14:58 2011 +0100 change default of org-agenda-skip-additional-timestamps-same-entry to n= il diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index b1fa5f5..20d55f7 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -787,7 +787,7 @@ because you will take care of it on the day when schedu= led." (const :tag "Remove prewarning if entry is scheduled" t) (integer :tag "Restart prewarning N days before deadline"))) =20 -(defcustom org-agenda-skip-additional-timestamps-same-entry t +(defcustom org-agenda-skip-additional-timestamps-same-entry nil "When nil, multiple same-day timestamps in entry make multiple agenda li= nes. When non-nil, after the search for timestamps has matched once in an entry, the rest of the entry will not be searched." ----------------------------------