From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Timothy Hobbs Newsgroups: gmane.emacs.help Subject: Date manangement. Date: Mon, 24 Mar 2008 14:25:46 -0700 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1206412318 11336 80.91.229.12 (25 Mar 2008 02:31:58 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 25 Mar 2008 02:31:58 +0000 (UTC) To: EMACS list Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Mar 25 03:32:28 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Jdyxa-0001DR-N8 for geh-help-gnu-emacs@m.gmane.org; Tue, 25 Mar 2008 03:32:23 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Jdywy-000402-94 for geh-help-gnu-emacs@m.gmane.org; Mon, 24 Mar 2008 22:31:44 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JduBC-0000Wn-1x for help-gnu-emacs@gnu.org; Mon, 24 Mar 2008 17:26:06 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JduBA-0000Wb-Rm for help-gnu-emacs@gnu.org; Mon, 24 Mar 2008 17:26:05 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JduBA-0000WY-Lk for help-gnu-emacs@gnu.org; Mon, 24 Mar 2008 17:26:04 -0400 Original-Received: from wa-out-1112.google.com ([209.85.146.179]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JduBA-000368-Ce for help-gnu-emacs@gnu.org; Mon, 24 Mar 2008 17:26:04 -0400 Original-Received: by wa-out-1112.google.com with SMTP id k34so3846097wah.10 for ; Mon, 24 Mar 2008 14:26:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:to:subject:from:date:message-id:user-agent:mime-version:content-type; bh=/2PWb98VgUwdJ2JioMo0WeqzK6bQc4V1CZGRvA+0NMo=; b=WhK30jRXg8c/Tfv6pynUJ00SQVxGnYfU2f5M9eNMWTi5V03YQBTOm21vIPlxHYk0XY5sV5YDjDsTSusJs5nO3lyn3wDCodEcE7Ck6rvGSMJzgjZMfzUHD6xlNMBjMusjszV6C1B0uFMEftcVk311Yd6R4lnNGD3n+kGcZCC+rJ0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=to:subject:from:date:message-id:user-agent:mime-version:content-type; b=jYVhlw1TGF01f8iZeO4vutpbEo5CTslH+y8N49rw2pCBj7Q8+AMq4n5BdypaggI443jOloRTW9hQJCQYJAeBYajo7yvf28qOSOmJFjqlzCRZ9GbS3D7Is0Qbnw6iXiPWHzub3hAEp2HezKkMJQbi3pUkfyEMDB9x0t3FEPA0NTw= Original-Received: by 10.114.135.1 with SMTP id i1mr12707662wad.88.1206393961904; Mon, 24 Mar 2008 14:26:01 -0700 (PDT) Original-Received: from localhost ( [71.112.111.114]) by mx.google.com with ESMTPS id m10sm16761848waf.35.2008.03.24.14.26.00 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 24 Mar 2008 14:26:00 -0700 (PDT) User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux) X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) X-Mailman-Approved-At: Mon, 24 Mar 2008 22:31:14 -0400 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:52673 Archived-At: Hello. This is Timothy. Is there a good way to add on day to a date of any sort? time-date.el doesn't seem to be good at this. What I need to do is add a day, incramenting months, and years, correctly, so 2008/03/31+1 = 2008/04/00 not 2008/03/32... I am currently working on a bit of elisp for planner which imports ical files. So I need to be able to import events that span multiple days, as mutliple tasks. This requires walking through the days creating a task for each one covered. Timothy