Fix signature of `seconds-to-time'

* lisp/calendar/time-date.el (seconds-to-time): Fix after change
to time-convert.
This commit is contained in:
Po Lu 2022-08-06 10:21:52 +08:00
parent 32ab6d7105
commit ef0546ffcd

View file

@ -174,7 +174,10 @@ If DATE lacks timezone information, GMT is assumed."
(defalias 'time-to-seconds 'float-time)
;;;###autoload
(defalias 'seconds-to-time 'time-convert)
(defun seconds-to-time (seconds &rest form)
"Convert SECONDS to a proper time, like `current-time' would.
FORM means the same as in `time-convert'."
(time-convert seconds form))
;;;###autoload
(defun days-to-time (days)