[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: master ef0546ffcd 2/3: Fix signature of `seconds-to-time'
From: |
Po Lu |
Subject: |
Re: master ef0546ffcd 2/3: Fix signature of `seconds-to-time' |
Date: |
Sat, 06 Aug 2022 17:03:52 +0800 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.0.91 (gnu/linux) |
Stefan Monnier <monnier@iro.umontreal.ca> writes:
>> ;;;###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))
>
> Oh, thanks. I wonder, tho; shouldn't this just have a `seconds`
> argument and no `form`, as was the case until 2018?
>
>
> Stefan
I'm not sure what the right thing to do here is, but feel free to make
such a change should you want to.
Thanks.