From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Leo Newsgroups: gmane.emacs.devel Subject: Re: [appt] allow specifying warning time in diary Date: Wed, 08 Sep 2010 10:48:20 +0100 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1283939326 7333 80.91.229.12 (8 Sep 2010 09:48:46 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 8 Sep 2010 09:48:46 +0000 (UTC) Cc: emacs-devel@gnu.org To: Andreas Schwab Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Sep 08 11:48:45 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OtHGl-0005MB-0s for ged-emacs-devel@m.gmane.org; Wed, 08 Sep 2010 11:48:43 +0200 Original-Received: from localhost ([127.0.0.1]:41279 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OtHGk-0000AE-Dh for ged-emacs-devel@m.gmane.org; Wed, 08 Sep 2010 05:48:42 -0400 Original-Received: from [140.186.70.92] (port=57610 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OtHGW-000065-Ta for emacs-devel@gnu.org; Wed, 08 Sep 2010 05:48:33 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OtHGR-0000rb-Pu for emacs-devel@gnu.org; Wed, 08 Sep 2010 05:48:28 -0400 Original-Received: from ppsw-30.csi.cam.ac.uk ([131.111.8.130]:48816) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OtHGR-0000qr-KY for emacs-devel@gnu.org; Wed, 08 Sep 2010 05:48:23 -0400 X-Cam-AntiVirus: no malware found X-Cam-SpamDetails: not scanned X-Cam-ScannerInfo: http://www.cam.ac.uk/cs/email/scanner/ Original-Received: from cpc1-cmbg13-0-0-cust596.5-4.cable.virginmedia.com ([86.9.122.85]:50850 helo=Victoria.local) by ppsw-30.csi.cam.ac.uk (smtp.hermes.cam.ac.uk [131.111.8.156]:587) with esmtpsa (PLAIN:sl392) (TLSv1:DHE-RSA-AES128-SHA:128) id 1OtHGP-0000Dx-fS (Exim 4.72) (return-path ); Wed, 08 Sep 2010 10:48:21 +0100 In-Reply-To: (Andreas Schwab's message of "Wed, 08 Sep 2010 11:29:36 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (Mac OS X 10.6.4) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:129777 Archived-At: On 2010-09-08 10:29 +0100, Andreas Schwab wrote: > Leo writes: > >> +Optionally you can specify a warning time for an entry following >> +the time. For example: >> + >> + Thursday >> + 11:45am #20 Lunch meeting. >> + > > Please document the unit. > > Andreas. Thank you for the comment. diff --git a/lisp/calendar/appt.el b/lisp/calendar/appt.el index e70644c..3573c95 100644 --- a/lisp/calendar/appt.el +++ b/lisp/calendar/appt.el @@ -273,8 +273,8 @@ for a warning to be issued. The format of the time can be either Thursday 11:45am Lunch meeting. -Optionally you can specify a warning time for an entry following -the time. For example: +Optionally you can specify a warning time (in minutes) for an +entry following the time. For example: Thursday 11:45am #20 Lunch meeting. Leo