# HG changeset patch # User Glenn Morris # Date 1267500461 28800 # Node ID 893db32922640d7f8ad0d650859ba486a3d846db # Parent 8a921fc271ee81dd480f7ab16998adcc3a4cea42 Fix date of Yom HaAtzma'ut holiday. * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004). diff -r 8a921fc271ee -r 893db3292264 lisp/ChangeLog --- a/lisp/ChangeLog Tue Mar 02 10:35:00 2010 +0900 +++ b/lisp/ChangeLog Mon Mar 01 19:27:41 2010 -0800 @@ -1,3 +1,8 @@ +2010-03-02 Glenn Morris + + * 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 * progmodes/cc-engine.el (c-remove-stale-state-cache): Correct diff -r 8a921fc271ee -r 893db3292264 lisp/calendar/cal-hebrew.el --- a/lisp/calendar/cal-hebrew.el Tue Mar 02 10:35:00 2010 +0900 +++ b/lisp/calendar/cal-hebrew.el Mon Mar 01 19:27:41 2010 -0800 @@ -505,7 +505,9 @@ (+ 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")