summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Lundin <mdl@imapmail.org>2011-10-28 17:57:42 +0000
committerCarsten Dominik <carsten.dominik@gmail.com>2011-10-28 15:14:12 +0200
commit87fc97d1311bab9a7cecf650f014bfb4172fbf1e (patch)
treedda42ce37736df3b6479ea3f6c3a3e168fadde33
parentf6a766548c4e575fbf933aab604ba7a397848cbc (diff)
downloadorg-mode-87fc97d1311bab9a7cecf650f014bfb4172fbf1e.tar.gz
Fix holidays symbol in org-class
* lisp/org-agenda.el: (org-class): Fix holidays symbol in org-class. This was resulting in an "Bad sexp..." warning.
-rw-r--r--lisp/org-agenda.el2
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)))