]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix date of Yom HaAtzma'ut holiday.
authorGlenn Morris <rgm@gnu.org>
Tue, 2 Mar 2010 03:27:41 +0000 (19:27 -0800)
committerGlenn Morris <rgm@gnu.org>
Tue, 2 Mar 2010 03:27:41 +0000 (19:27 -0800)
* calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).

lisp/ChangeLog
lisp/calendar/cal-hebrew.el

index 8f2c2460aad59fdf0f50561d567031df922ae0d1..ca850a4db591a78f1b887ac370036a6bd52af5d9 100644 (file)
@@ -1,3 +1,8 @@
+2010-03-02  Glenn Morris  <rgm@gnu.org>
+
+       * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
+       of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
+
 2010-03-01  Alan Mackenzie  <acm@muc.de>
 
        * progmodes/cc-engine.el (c-remove-stale-state-cache): Correct
index 330d3c22cb5aa81bfcce6ff0f32c92227c44957c..2a7556ff322c83262772b611cce552e7ee7ed995 100644 (file)
@@ -505,7 +505,9 @@ or ALL is non-nil."
                       (+ abs-p 18)
                     (if (= (% abs-p 7) 6)
                         (+ abs-p 19)
-                      (+ abs-p 20))))
+                      (if (= (% abs-p 7) 2)
+                          (+ abs-p 21)
+                        (+ abs-p 20)))))
                  "Yom HaAtzma'ut")
            (list (calendar-gregorian-from-absolute (+ abs-p 33))
                  "Lag BaOmer")