diff options
| author | Karl Heuer | 1997-11-07 19:22:50 +0000 |
|---|---|---|
| committer | Karl Heuer | 1997-11-07 19:22:50 +0000 |
| commit | cc6e052280f441d7d111b2586f57f2be01b47e99 (patch) | |
| tree | 9dd7ab68d190cff2b1a4a2de7142d06b61a4a69c | |
| parent | cff455ae1e6f5f5d701187508be8513c6c5b00fb (diff) | |
| download | emacs-cc6e052280f441d7d111b2586f57f2be01b47e99.tar.gz emacs-cc6e052280f441d7d111b2586f57f2be01b47e99.zip | |
(calendar-chinese-date-string): Fix month name.
| -rw-r--r-- | lisp/calendar/cal-china.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calendar/cal-china.el b/lisp/calendar/cal-china.el index dce796a55aa..bdaf48f1458 100644 --- a/lisp/calendar/cal-china.el +++ b/lisp/calendar/cal-china.el | |||
| @@ -377,7 +377,7 @@ Defaults to today's date if DATE is not given." | |||
| 377 | (floor month) | 377 | (floor month) |
| 378 | (if (integerp month) | 378 | (if (integerp month) |
| 379 | (format " (%s)" (calendar-chinese-sexagesimal-name | 379 | (format " (%s)" (calendar-chinese-sexagesimal-name |
| 380 | (+ (* 5 year) month 44))) | 380 | (+ (* 12 year) month 50))) |
| 381 | "") | 381 | "") |
| 382 | day (calendar-chinese-sexagesimal-name (+ a-date 15))))) | 382 | day (calendar-chinese-sexagesimal-name (+ a-date 15))))) |
| 383 | 383 | ||