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:
parent
32ab6d7105
commit
ef0546ffcd
1 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue