【发布时间】:2009-08-17 06:38:39
【问题描述】:
在 elisp 中,我有一个时间(三个整数的形式),我可以使用 decode-time 获得月份。我想得到的是那个月(和年)的天数,使用 elisp 函数(而不是我自己写的)。
即:
(defun days-in-month-at-time(t)
; Figure out month and year with decode-time
; return number of days in that month
)
【问题讨论】: