Browse Source

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.
Matt Lundin 13 năm trước cách đây
mục cha
commit
87fc97d131
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      lisp/org-agenda.el

+ 1 - 1
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)))