These were overlooked in a recent change.
* lisp/calendar/time-date.el (time-date--day-in-year): Use decoded
time accessors.
(defun time-date--day-in-year (tim)
"Return the day number within the year corresponding to the decoded time TIM."
- (let* ((month (nth 4 tim))
- (day (nth 3 tim))
- (year (nth 5 tim))
+ (let* ((month (decoded-time-month tim))
+ (day (decoded-time-day tim))
+ (year (decoded-time-year tim))
(day-of-year (+ day (* 31 (1- month)))))
(when (> month 2)
(setq day-of-year (- day-of-year (/ (+ 23 (* 4 month)) 10)))