emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/calendar/cal-hebrew.el,v


From: Glenn Morris
Subject: [Emacs-diffs] Changes to emacs/lisp/calendar/cal-hebrew.el,v
Date: Fri, 04 Apr 2008 04:37:47 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       08/04/04 04:37:47

Index: cal-hebrew.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/calendar/cal-hebrew.el,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -b -r1.56 -r1.57
--- cal-hebrew.el       3 Apr 2008 04:06:48 -0000       1.56
+++ cal-hebrew.el       4 Apr 2008 04:37:47 -0000       1.57
@@ -325,7 +325,7 @@
 ;;;###holiday-autoload
 (defun holiday-rosh-hashanah-etc (&optional all)
   "List of dates related to Rosh Hashanah, as visible in calendar window.
-Shows only the major holidays, unless `all-hebrew-calendar-holidays'
+Shows only the major holidays, unless `calendar-hebrew-all-holidays-flag'
 or ALL is non-nil."
   (when (memq displayed-month '(8 9 10 11))
     (let ((abs-r-h (calendar-absolute-from-hebrew
@@ -343,7 +343,7 @@
                "Shemini Atzeret")
          (list (calendar-gregorian-from-absolute (+ abs-r-h 22))
                "Simchat Torah"))
-        (when (or all all-hebrew-calendar-holidays)
+        (when (or all calendar-hebrew-all-holidays-flag)
           (list
            (list (calendar-gregorian-from-absolute
                   (calendar-dayname-on-or-before 6 (- abs-r-h 4)))
@@ -378,7 +378,7 @@
 ;;;###holiday-autoload
 (defun holiday-hanukkah (&optional all)
   "List of dates related to Hanukkah, as visible in calendar window.
-Shows only Hanukkah, unless `all-hebrew-calendar-holidays' or ALL
+Shows only Hanukkah, unless `calendar-hebrew-all-holidays-flag' or ALL
 is non-nil."
   ;; This test is only to speed things up a bit, it works fine without it.
   (when (memq displayed-month '(10 11 12 1 2))
@@ -395,7 +395,7 @@
                  "seventh" "eighth"])
            han)
       (holiday-filter-visible-calendar
-       (if (or all all-hebrew-calendar-holidays)
+       (if (or all calendar-hebrew-all-holidays-flag)
            (append
             (list
              (list (calendar-gregorian-from-absolute (1- abs-h))
@@ -410,7 +410,7 @@
 ;;;###holiday-autoload
 (defun holiday-passover-etc (&optional all)
   "List of dates related to Passover, as visible in calendar window.
-Shows only the major holidays, unless `all-hebrew-calendar-holidays'
+Shows only the major holidays, unless `calendar-hebrew-all-holidays-flag'
 or ALL is non-nil."
   (when (< displayed-month 8)
     (let ((abs-p (calendar-absolute-from-hebrew
@@ -422,7 +422,7 @@
          (list (calendar-gregorian-from-absolute abs-p) "Passover")
          (list (calendar-gregorian-from-absolute (+ abs-p 50))
                     "Shavuot"))
-        (when (or all all-hebrew-calendar-holidays)
+        (when (or all calendar-hebrew-all-holidays-flag)
           (list
            (list (calendar-gregorian-from-absolute
                   (calendar-dayname-on-or-before 6 (- abs-p 43)))




reply via email to

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