emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r99596: Fix date of Yom HaAtzma'ut ho


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99596: Fix date of Yom HaAtzma'ut holiday.
Date: Mon, 01 Mar 2010 19:27:41 -0800
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99596
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Mon 2010-03-01 19:27:41 -0800
message:
  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).
modified:
  lisp/ChangeLog
  lisp/calendar/cal-hebrew.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-03-01 17:46:36 +0000
+++ b/lisp/ChangeLog    2010-03-02 03:27:41 +0000
@@ -1,3 +1,8 @@
+2010-03-02  Glenn Morris  <address@hidden>
+
+       * 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  <address@hidden>
 
        * progmodes/cc-engine.el (c-remove-stale-state-cache): Correct

=== modified file 'lisp/calendar/cal-hebrew.el'
--- a/lisp/calendar/cal-hebrew.el       2010-01-13 08:35:10 +0000
+++ b/lisp/calendar/cal-hebrew.el       2010-03-02 03:27:41 +0000
@@ -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")


reply via email to

[Prev in Thread] Current Thread [Next in Thread]