From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: [Accepted] [Orgmode,1/2] org-gnus: trim date Date: Thu, 16 Dec 2010 14:21:38 +0100 (CET) Message-ID: <20101216132138.E173F7D9B0F@carsten-dominiks-macbook-pro.local> References: <1292337138-14321-1-git-send-email-julien@danjou.info> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=34296 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PUMjc-00063X-0C for emacs-orgmode@gnu.org; Sun, 19 Dec 2010 12:07:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PUMjZ-0004yl-S7 for emacs-orgmode@gnu.org; Sun, 19 Dec 2010 12:07:47 -0500 Received: from dslb-088-073-002-220.pools.arcor-ip.net ([88.73.2.220]:58285 helo=localhost.localhost) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PUMjZ-0004xO-EE for emacs-orgmode@gnu.org; Sun, 19 Dec 2010 12:07:45 -0500 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: emacs-orgmode@gnu.org Patch 480 (http://patchwork.newartisans.com/patch/480/) is now "Accepted". Maintainer comment: No comment This relates to the following submission: http://mid.gmane.org/%3C1292337138-14321-1-git-send-email-julien%40danjou.info%3E Here is the original message containing the patch: > Content-Type: text/plain; charset="utf-8" > MIME-Version: 1.0 > Content-Transfer-Encoding: 7bit > Subject: [Orgmode,1/2] org-gnus: trim date > Date: Tue, 14 Dec 2010 19:32:17 -0000 > From: Julien Danjou > X-Patchwork-Id: 480 > Message-Id: <1292337138-14321-1-git-send-email-julien@danjou.info> > To: emacs-orgmode@gnu.org > Cc: Julien Danjou > > * org-gnus.el (org-gnus-store-link): Trim date. > > Signed-off-by: Julien Danjou > > --- > lisp/org-gnus.el | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/lisp/org-gnus.el b/lisp/org-gnus.el > index fccd3e9..32641bf 100644 > --- a/lisp/org-gnus.el > +++ b/lisp/org-gnus.el > @@ -151,7 +151,7 @@ If `org-store-link' was called with a prefix arg the meaning of > (gnus-summary-article-header))) > (from (mail-header-from header)) > (message-id (org-remove-angle-brackets (mail-header-id header))) > - (date (mail-header-date header)) > + (date (org-trim (mail-header-date header))) > (date-ts (and date (format-time-string > (org-time-stamp-format t) (date-to-time date)))) > (date-ts-ia (and date (format-time-string >