diff options
| -rw-r--r-- | lisp/calendar/cal-hebrew.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/calendar/cal-hebrew.el b/lisp/calendar/cal-hebrew.el index 23e6d694b08..79bbd956474 100644 --- a/lisp/calendar/cal-hebrew.el +++ b/lisp/calendar/cal-hebrew.el | |||
| @@ -441,7 +441,10 @@ nil if it is not visible in the current calendar window." | |||
| 441 | "Passover (seventh day)") | 441 | "Passover (seventh day)") |
| 442 | (list (calendar-gregorian-from-absolute (+ abs-p 7)) | 442 | (list (calendar-gregorian-from-absolute (+ abs-p 7)) |
| 443 | "Passover (eighth day)") | 443 | "Passover (eighth day)") |
| 444 | (list (calendar-gregorian-from-absolute (+ abs-p 12)) | 444 | (list (calendar-gregorian-from-absolute |
| 445 | (if (zerop (% (+ abs-p 12) 7)) | ||
| 446 | (+ abs-p 13) | ||
| 447 | (+ abs-p 12))) | ||
| 445 | "Yom HaShoah") | 448 | "Yom HaShoah") |
| 446 | (list (calendar-gregorian-from-absolute | 449 | (list (calendar-gregorian-from-absolute |
| 447 | (if (zerop (% abs-p 7)) | 450 | (if (zerop (% abs-p 7)) |