vote up 1 vote down star

In elisp I have a time in the (form of three integers), and I can get the month using decode-time. What I'd like to get is the number of days in that month (and year), using elisp functions (rather than write my own).

i.e:

(defun days-in-month-at-time(t)
    ; Figure out month and year with decode-time
    ; return number of days in that month   
)
flag

2 Answers

vote up 5 vote down check
(require 'timezone)

(defun days-in-month-at-time (time)
  "Return number of days in month at TIME."
  (let ((datetime (decode-time time)))
    (timezone-last-day-of-month (nth 4 datetime) (nth 5 datetime))))
link|flag
Also see related SO question : stackoverflow.com/questions/753248/… – Trey Jackson Aug 17 at 13:04
Perfect, thanks! – justinhj Aug 17 at 14:08
timezone-last-day-of-month is not present on my work machine Windows build of emacs 23.1.1 I wonder if it's been removed, or added after that? – justinhj Aug 26 at 20:14
Ah, I see, you need to load or require calendar (or timezone), hence the apparent difference. – justinhj Aug 27 at 4:10
@justinhj: you're right, neither calendar or timezone loaded by default, so you may need require the package first. – Török Gábor Aug 27 at 7:01
vote up 0 vote down

Looks like this is better since time-zone doesn't seem to be in all recent emacs versions edit: Sorry you just need to require timezone, or calendar depending on whether you use this or the other answer.

(defun days-in-month-at-time (time)
  "Return number of days in month at TIME."
  (let ((datetime (decode-time time)))
    (calendar-last-day-of-month (nth 4 datetime) (nth 5 datetime))))
link|flag
This doesn't work for me in emacs 22.1.1 on Mac: (days-in-month-at-time (current-time)) – melling Oct 8 at 3:49
I think you need (require 'calendar) first. – justinhj Oct 8 at 18:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.