From: Edward M. Reingold Date: Tue, 24 Oct 1995 15:50:05 +0000 (+0000) Subject: Fix menu for Chinese calendar. X-Git-Tag: emacs-19.34~2575 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=786272966f42ce9df91febbdb16bd1c3dc4e5c96;p=emacs.git Fix menu for Chinese calendar. --- diff --git a/lisp/calendar/cal-menu.el b/lisp/calendar/cal-menu.el index 4b00d3e9bd3..80bda84bae4 100644 --- a/lisp/calendar/cal-menu.el +++ b/lisp/calendar/cal-menu.el @@ -396,12 +396,11 @@ The output is in landscape format, one month to a page." (let ((i (calendar-islamic-date-string date))) (if (not (string-equal i "")) (list (list (format "Islamic date (before sunset): %s" i))))) -; too slow to leave this in all the time! -; (list -; (list (format "Chinese date: %s" (calendar-chinese-date-string date)))) -; so instead, - (list '("Chinese date (select to echo Chinese date)" - . calendar-mouse-chinese-date)) + (list + (list (format "Chinese date: %s" + (calendar-chinese-date-string date)))) +; (list '("Chinese date (select to echo Chinese date)" +; . calendar-mouse-chinese-date)) (let ((c (calendar-coptic-date-string date))) (if (not (string-equal c "")) (list (list (format "Coptic date: %s" c)))))