From cca065d8cf176c7900de58b636bea9ea7a622a7a Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sat, 5 Sep 2009 21:07:15 +0000 Subject: [PATCH] (holiday-chinese): Make it slightly more efficient. --- lisp/ChangeLog | 3 ++ lisp/calendar/cal-china.el | 67 ++++++++++++++++++++------------------ 2 files changed, 39 insertions(+), 31 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7b00d330159..a7e43340749 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2009-09-05 Glenn Morris + * calendar/cal-china.el (holiday-chinese): Make it slightly more + efficient. + * font-lock.el (lisp-font-lock-keywords-2): Add letf. * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix. 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))))) -- 2.39.2