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).
This commit is contained in:
parent
743c12d63d
commit
33f779825b
2 changed files with 8 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Add table
Reference in a new issue