]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix display of Chinese date.
authorEdward M. Reingold <reingold@emr.cs.iit.edu>
Fri, 22 Sep 1995 19:36:26 +0000 (19:36 +0000)
committerEdward M. Reingold <reingold@emr.cs.iit.edu>
Fri, 22 Sep 1995 19:36:26 +0000 (19:36 +0000)
lisp/calendar/cal-menu.el

index ddf00675cda8674ab99219af2d7d57da69245c04..7a60d558d697d33b410fbe1e00c6bd0b7dc87547 100644 (file)
@@ -300,7 +300,7 @@ ERROR is t, otherwise just returns nil."
 ;        (list (format "Chinese date: %s" (calendar-chinese-date-string date))))
 ;       so instead,
             (list '("Chinese date (select to echo Chinese date)"
-                    . calendar-print-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)))))
@@ -316,6 +316,12 @@ ERROR is t, otherwise just returns nil."
                       (calendar-mayan-date-string date)))))))))
         (and selection (call-interactively selection))))
 
+(defun calendar-mouse-chinese-date ()
+  "Show Chinese equivalent for mouse-selected date."
+  (interactive)
+  (save-excursion
+    (calendar-goto-date (calendar-event-to-date))
+    (calendar-print-chinese-date)))
 
 (defun calendar-mouse-2-date-menu (event)
   "Pop up menu for Mouse-2 for selected date in the calendar window."