]> git.eshelyaron.com Git - emacs.git/commitdiff
(emacs-startup-time): Rename to `before-init-time'.
authorGlenn Morris <rgm@gnu.org>
Sat, 16 Feb 2008 22:20:12 +0000 (22:20 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 16 Feb 2008 22:20:12 +0000 (22:20 +0000)
(before-init-time): New name for `emacs-startup-time'.
(command-line): Use before-init-time rather than emacs-startup-time.

lisp/startup.el

index 7e030e7f6352d5c709728fb7858ae72fff8a749f..1b420436b527b37a3d9fe57d4926ec24ebfa0338 100644 (file)
@@ -194,8 +194,8 @@ There is no `condition-case' around the running of these functions;
 therefore, if you set `debug-on-error' non-nil in `.emacs',
 an error in one of these functions will invoke the debugger.")
 
-(defvar emacs-startup-time nil
-  "Value of `current-time' when Emacs was started.")
+(defvar before-init-time nil
+  "Value of `current-time' before Emacs begins initialization.")
 
 (defvar emacs-startup-hook nil
   "Normal hook run after loading init files and handling the command line.")
@@ -628,7 +628,7 @@ opening the first frame (e.g. open a connection to an X server).")
     (nreverse rest)))
 
 (defun command-line ()
-  (setq emacs-startup-time (current-time)
+  (setq before-init-time (current-time)
         command-line-default-directory default-directory)
 
   ;; Choose a reasonable location for temporary files.