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/holidays.el


From: Glenn Morris
Subject: [Emacs-diffs] Changes to emacs/lisp/calendar/holidays.el
Date: Mon, 06 Dec 2004 20:16:20 -0500

Index: emacs/lisp/calendar/holidays.el
diff -c emacs/lisp/calendar/holidays.el:1.38 
emacs/lisp/calendar/holidays.el:1.39
*** emacs/lisp/calendar/holidays.el:1.38        Tue Dec  7 00:46:08 2004
--- emacs/lisp/calendar/holidays.el     Tue Dec  7 00:58:02 2004
***************
*** 400,418 ****
               (string (if date (eval string))))
          (list (list date string)))))))
  
! (defun holiday-advent (n string)
!   "Date of Nth day after advent (named STRING), if visible in calendar 
window."
!   (let ((year displayed-year)
!         (month displayed-month))
!     (increment-calendar-month month year -1)
!     (let ((advent (calendar-gregorian-from-absolute
!                    (+ n
!                       (calendar-dayname-on-or-before
!                        0
!                        (calendar-absolute-from-gregorian
!                         (list 12 3 year)))))))
!       (if (calendar-date-is-visible-p advent)
!           (list (list advent string))))))
  
  (defun holiday-easter-etc (&optional n string)
    "Date of Nth day after Easter (named STRING), if visible in calendar window.
--- 400,428 ----
               (string (if date (eval string))))
          (list (list date string)))))))
  
! (defun holiday-advent (&optional n string)
!   "Date of Nth day after advent (named STRING), if visible in calendar window.
! Negative values of N are interpreted as days before advent.
! STRING is used purely for display purposes.  The return value has
! the form ((MONTH DAY YEAR) STRING), where the date is that of the
! Nth day before or after advent.
! 
! For backwards compatability, if this function is called with no
! arguments, then it returns the value appropriate for advent itself."
!   ;; Backwards compatability layer.
!   (if (not n)
!       (holiday-advent 0 "Advent")
!     (let ((year displayed-year)
!           (month displayed-month))
!       (increment-calendar-month month year -1)
!       (let ((advent (calendar-gregorian-from-absolute
!                      (+ n
!                         (calendar-dayname-on-or-before
!                          0
!                          (calendar-absolute-from-gregorian
!                           (list 12 3 year)))))))
!         (if (calendar-date-is-visible-p advent)
!             (list (list advent string)))))))
  
  (defun holiday-easter-etc (&optional n string)
    "Date of Nth day after Easter (named STRING), if visible in calendar window.




reply via email to

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