summaryrefslogtreecommitdiff
path: root/lisp/calendar/cal-china.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-09-05 21:07:15 +0000
committerGlenn Morris <rgm@gnu.org>2009-09-05 21:07:15 +0000
commitcca065d8cf176c7900de58b636bea9ea7a622a7a (patch)
tree949e11e34c2b4a98f547664615a44ef6bfd72d4d /lisp/calendar/cal-china.el
parentcddaedb65b95e4a2d8672eaad64fdb3482d36c86 (diff)
downloademacs-cca065d8cf176c7900de58b636bea9ea7a622a7a.tar.gz
(holiday-chinese): Make it slightly more efficient.
Diffstat (limited to 'lisp/calendar/cal-china.el')
-rw-r--r--lisp/calendar/cal-china.el67
1 files changed, 36 insertions, 31 deletions
diff --git a/lisp/calendar/cal-china.el b/lisp/calendar/cal-china.el
index b806b691adb..03591cf9716 100644
--- a/lisp/calendar/cal-china.el
+++ b/lisp/calendar/cal-china.el
@@ -517,37 +517,42 @@ Returns (((MONTH DAY YEAR) TEXT)), where the date is Gregorian."
If MONTH, DAY (Chinese) is visible, returns the corresponding
Gregorian date as the list (((month day year) STRING)).
Returns nil if it is not visible in the current calendar window."
- ;; This is calendar-nongregorian-visible-p adapted for the form of
- ;; chinese dates: (cycle year month day) as opposed to (month day year).
- (let* ((m1 displayed-month)
- (y1 displayed-year)
- (m2 displayed-month)
- (y2 displayed-year)
- ;; Absolute date of first/last dates in calendar window.
- (start-date (progn
- (calendar-increment-month m1 y1 -1)
- (calendar-absolute-from-gregorian (list m1 1 y1))))
- (end-date (progn
- (calendar-increment-month m2 y2 1)
- (calendar-absolute-from-gregorian
- (list m2 (calendar-last-day-of-month m2 y2) y2))))
- ;; Local date of first/last date in calendar window.
- (local-start (calendar-chinese-from-absolute start-date))
- ;; A basic optimization. We only care about the year part,
- ;; and the Chinese year can only change if Jan or Feb are
- ;; visible. FIXME can we do more?
- (local-end (if (memq displayed-month '(12 1 2 3))
- (calendar-chinese-from-absolute end-date)
- local-start))
- ;; When Chinese New Year is visible on the far right of the
- ;; calendar, what is the earliest Chinese month in the
- ;; previous year that might still visible? This test doesn't
- ;; have to be precise.
- (local (if (< month 10) local-end local-start))
- (cycle (car local))
- (year (cadr local))
- (date (calendar-gregorian-from-absolute
- (calendar-chinese-to-absolute (list cycle year month day)))))
+ (let ((date
+ (calendar-gregorian-from-absolute
+ ;; A basic optimization. Chinese year can only change if
+ ;; Jan or Feb are visible. FIXME can we do more?
+ (if (memq displayed-month '(12 1 2 3))
+ ;; This is calendar-nongregorian-visible-p adapted for
+ ;; the form of chinese dates: (cycle year month day) as
+ ;; opposed to (month day year).
+ (let* ((m1 displayed-month)
+ (y1 displayed-year)
+ (m2 displayed-month)
+ (y2 displayed-year)
+ ;; Absolute date of first/last dates in calendar window.
+ (start-date (progn
+ (calendar-increment-month m1 y1 -1)
+ (calendar-absolute-from-gregorian
+ (list m1 1 y1))))
+ (end-date (progn
+ (calendar-increment-month m2 y2 1)
+ (calendar-absolute-from-gregorian
+ (list m2 (calendar-last-day-of-month m2 y2)
+ y2))))
+ ;; Local date of first/last date in calendar window.
+ (local-start (calendar-chinese-from-absolute start-date))
+ (local-end (calendar-chinese-from-absolute end-date))
+ ;; When Chinese New Year is visible on the far
+ ;; right of the calendar, what is the earliest
+ ;; Chinese month in the previous year that might
+ ;; still visible? This test doesn't have to be precise.
+ (local (if (< month 10) local-end local-start))
+ (cycle (car local))
+ (year (cadr local)))
+ (calendar-chinese-to-absolute (list cycle year month day)))
+ ;; Simple form for when new years are not visible.
+ (+ (cadr (assoc month (calendar-chinese-year displayed-year)))
+ (1- day))))))
(if (calendar-date-is-visible-p date)
(list (list date string)))))