# HG changeset patch # User Jim Blandy # Date 718386619 0 # Node ID e5334b44bdaba15894f576b45782b93a3e75fbbb # Parent a8623439066b3a1afe67185690de140a1167e441 * cal-mayan.el (calendar-print-mayan-date): Fix conversion in output message. diff -r a8623439066b -r e5334b44bdab lisp/calendar/cal-mayan.el --- a/lisp/calendar/cal-mayan.el Tue Oct 06 08:59:39 1992 +0000 +++ b/lisp/calendar/cal-mayan.el Tue Oct 06 15:50:19 1992 +0000 @@ -362,8 +362,8 @@ (long-count (calendar-mayan-long-count-from-absolute d))) (message "Mayan date: Long count = %s; tzolkin = %s; haab = %s" (calendar-mayan-long-count-to-string long-count) - (calendar-mayan-tzolkin-to-string haab) - (calendar-mayan-haab-to-string tzolkin)))) + (calendar-mayan-tzolkin-to-string tzolkin) + (calendar-mayan-haab-to-string haab)))) (defun calendar-goto-mayan-long-count-date (date &optional noecho) "Move cursor to Mayan long count DATE. Echo Mayan date unless NOECHO is t."