Variable: current-time-list
current-time-list is a variable defined in timefns.c.
Value
t
Documentation
Whether current-time should return list or (TICKS . HZ) form.
This boolean variable is a transition aid. If t, current-time and
related functions return timestamps in list form, typically
(HIGH LOW USEC PSEC); otherwise, they use (TICKS . HZ) form.
Currently this variable defaults to t, for behavior compatible with
previous Emacs versions. Developers are encouraged to test
timestamp-related code with this variable set to nil, as it will
default to nil in a future Emacs version, and will be removed in some
version after that.
Probably introduced at or before Emacs version 29.1.
Source Code
// Defined in /usr/src/emacs/src/timefns.c
DEFVAR_BOOL ("current-time-list", current_time_list,
doc: /* Whether `current-time' should return list or (TICKS . HZ) form.
This boolean variable is a transition aid. If t, `current-time' and
related functions return timestamps in list form, typically
\(HIGH LOW USEC PSEC);