mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
Fix menu for Chinese calendar.
This commit is contained in:
parent
0c0efc3ef5
commit
786272966f
1 changed files with 5 additions and 6 deletions
|
|
@ -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)))))
|
||||
|
|
|
|||
Loading…
Reference in a new issue