From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: [Accepted] Fix holidays symbol in org-class Date: Fri, 28 Oct 2011 15:14:19 +0200 (CEST) Message-ID: <20111028131419.3D804661AAB@ehef100.hef.ru.nl> References: <87lis55l1h.fsf@fastmail.fm> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:50860) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJmGN-0008K2-SP for emacs-orgmode@gnu.org; Fri, 28 Oct 2011 09:14:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RJmGL-0001VY-Q9 for emacs-orgmode@gnu.org; Fri, 28 Oct 2011 09:14:23 -0400 Received: from ehef100.hef.ru.nl ([131.174.192.100]:54367) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJmGL-0001VB-Iu for emacs-orgmode@gnu.org; Fri, 28 Oct 2011 09:14:21 -0400 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: emacs-orgmode@gnu.org Patch 1013 (http://patchwork.newartisans.com/patch/1013/) is now "Accepted". Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C87lis55l1h.fsf%40fastmail.fm%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: [O] Fix holidays symbol in org-class > Date: Fri, 28 Oct 2011 17:57:42 -0000 > From: Matt Lundin > X-Patchwork-Id: 1013 > Message-Id: <87lis55l1h.fsf@fastmail.fm> > To: Org Mode > > * lisp/org-agenda.el: (org-class): Fix holidays symbol in org-class. > This was resulting in an "Bad sexp..." warning. > > --- > lisp/org-agenda.el | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el > index 66686f9..cbf8407 100644 > --- a/lisp/org-agenda.el > +++ b/lisp/org-agenda.el > @@ -4907,7 +4907,7 @@ holidy will also be skipped." > (progn > (require 'cal-iso) > (not (member (car (calendar-iso-from-absolute d)) skip-weeks)))) > - (not (and (memq `holidays' skip-weeks) > + (not (and (memq 'holidays skip-weeks) > (calendar-check-holidays date))) > entry))) > >