Mercurial > emacs
changeset 18423:3934c0e29d14
(profile-million): Variable moved.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 23 Jun 1997 19:12:42 +0000 |
parents | 96deedadd2f0 |
children | 395e1d352d3b |
files | lisp/emacs-lisp/profile.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/profile.el Mon Jun 23 19:10:51 1997 +0000 +++ b/lisp/emacs-lisp/profile.el Mon Jun 23 19:12:42 1997 +0000 @@ -92,6 +92,8 @@ (defvar profile-time (cons 0 0) "Used to return result from a filter.") (defvar profile-buffer "*profile*" "Name of profile buffer.") +(defconst profile-million 1000000) + ;;; ;;; F U N C T I O N S ;;; @@ -188,8 +190,6 @@ (setcar init-time (car profile-time)) (setcdr init-time (cdr profile-time))) )) - -(defconst profile-million 1000000) (defun profile-update-function (fun) "When the call to the function FUN is finished, add its run time."