Steve Youngs <steve(a)sxemacs.org> writes:
* Lars Brinkhoff <lars(a)nocrew.org> writes:
>>> ** The new primitive `get-internal-run-time' returns the
>>> processor run time used by Emacs since start-up.
Lars, (S)XEmacs has a function, `current-process-time'[1], which
looks like it does a similar thing to your function...
Yes, that would be
(current-process-time)
=> (15.09 0.38 4742.375269)
(get-internal-run-time)
=> (0 15 484645)
So I wonder if (S)XEmacs needs `get-internal-run-time' at all? Lars,
any comments?
For my purposes, I could check for (fboundp 'current-process-time) and
use that if get-internal-run-time is not present.