diff options
| author | Richard M. Stallman | 1997-06-23 19:12:42 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-06-23 19:12:42 +0000 |
| commit | 51eb91c27c2b04515fb4cc8632209fb51be10621 (patch) | |
| tree | cb706e0c92f08dcbdcfd0cca147c75ba2bd3bda0 | |
| parent | c88cd504f06bd7b478e07fcf52f2c77fa8140897 (diff) | |
| download | emacs-51eb91c27c2b04515fb4cc8632209fb51be10621.tar.gz emacs-51eb91c27c2b04515fb4cc8632209fb51be10621.zip | |
(profile-million): Variable moved.
| -rw-r--r-- | lisp/emacs-lisp/profile.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/profile.el b/lisp/emacs-lisp/profile.el index a7e137332e7..1f17a66310c 100644 --- a/lisp/emacs-lisp/profile.el +++ b/lisp/emacs-lisp/profile.el | |||
| @@ -92,6 +92,8 @@ Both how many times invoked and real time of start.") | |||
| 92 | (defvar profile-time (cons 0 0) "Used to return result from a filter.") | 92 | (defvar profile-time (cons 0 0) "Used to return result from a filter.") |
| 93 | (defvar profile-buffer "*profile*" "Name of profile buffer.") | 93 | (defvar profile-buffer "*profile*" "Name of profile buffer.") |
| 94 | 94 | ||
| 95 | (defconst profile-million 1000000) | ||
| 96 | |||
| 95 | ;;; | 97 | ;;; |
| 96 | ;;; F U N C T I O N S | 98 | ;;; F U N C T I O N S |
| 97 | ;;; | 99 | ;;; |
| @@ -188,8 +190,6 @@ With argument FLIST, use the list FLIST instead." | |||
| 188 | (setcar init-time (car profile-time)) | 190 | (setcar init-time (car profile-time)) |
| 189 | (setcdr init-time (cdr profile-time))) | 191 | (setcdr init-time (cdr profile-time))) |
| 190 | )) | 192 | )) |
| 191 | |||
| 192 | (defconst profile-million 1000000) | ||
| 193 | 193 | ||
| 194 | (defun profile-update-function (fun) | 194 | (defun profile-update-function (fun) |
| 195 | "When the call to the function FUN is finished, add its run time." | 195 | "When the call to the function FUN is finished, add its run time." |