From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Surprising behaviour with agenda file Date: Tue, 4 Oct 2011 14:33:51 +0200 Message-ID: <6F1268CE-1D2D-4C51-8C7C-E3242DA27417@gmail.com> References: <874nzvilx1.fsf@msstf091.ucc.ie> <201109291525.15053.DanielBausch@gmx.de> <8762kb2vtg.fsf@msstf091.ucc.ie> Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:39875) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RB4C7-0005Zf-P1 for emacs-orgmode@gnu.org; Tue, 04 Oct 2011 08:34:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RB4C2-00058U-01 for emacs-orgmode@gnu.org; Tue, 04 Oct 2011 08:33:59 -0400 Received: from mail-wy0-f169.google.com ([74.125.82.169]:58808) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RB4C1-00058Q-Rx for emacs-orgmode@gnu.org; Tue, 04 Oct 2011 08:33:53 -0400 Received: by wyf22 with SMTP id 22so544899wyf.0 for ; Tue, 04 Oct 2011 05:33:52 -0700 (PDT) In-Reply-To: <8762kb2vtg.fsf@msstf091.ucc.ie> 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: Andreas Amann Cc: Michael Brand , emacs-orgmode@gnu.org This patch has now been accepted - I believe the performance hit will be = minor. I would like to know if this is not the case... - Carsten On Sep 29, 2011, at 5:48 PM, Andreas Amann wrote: > 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). However, 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 >=20 > Okay, I see. >=20 > In my opinion the current default is unsafe, since people can lose > appointments.=20 >=20 > I propose to change the default of > org-agenda-skip-additional-timestamps-same-entry=20 > as below. >=20 > Andreas >=20 >=20 > -------------------------------- > commit 967ee90b3b05bad69b84fa3e5411f2d645121d6a > Author: Andreas Amann > Date: Thu Sep 29 16:14:58 2011 +0100 >=20 > change default of org-agenda-skip-additional-timestamps-same-entry = to nil >=20 > 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 = scheduled." > (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 lines. > When non-nil, after the search for timestamps has matched once in an > entry, the rest of the entry will not be searched." > ---------------------------------- >=20 >=20 >=20 - Carsten