diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-06-30 17:27:45 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-06-30 17:27:45 -0700 |
commit | e2bac5f625481e45ccd1a217af0cd211df461a20 (patch) | |
tree | befe4dfdf322442afcdb0565f93f885e093c8f19 /lisp/emacs-lisp | |
parent | 98768aebbe64e37b189364cf460aa4524339e3c0 (diff) | |
download | emacs-e2bac5f625481e45ccd1a217af0cd211df461a20.tar.gz emacs-e2bac5f625481e45ccd1a217af0cd211df461a20.tar.bz2 emacs-e2bac5f625481e45ccd1a217af0cd211df461a20.zip |
* emacs-lisp/benchmark.el (benchmark-elapse): Use float-time.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/benchmark.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/benchmark.el b/lisp/emacs-lisp/benchmark.el index 86063c512c6..aa84a075b76 100644 --- a/lisp/emacs-lisp/benchmark.el +++ b/lisp/emacs-lisp/benchmark.el @@ -39,9 +39,8 @@ (setq ,t1 (current-time)) ,@forms (setq ,t2 (current-time)) - (+ (* (- (car ,t2) (car ,t1)) 65536.0) - (- (nth 1 ,t2) (nth 1 ,t1)) - (* (- (nth 2 ,t2) (nth 2 ,t1)) 1.0e-6))))) + (float-time (time-subtract ,t2 ,t1))))) + (put 'benchmark-elapse 'edebug-form-spec t) (put 'benchmark-elapse 'lisp-indent-function 0) |