]> git.eshelyaron.com Git - emacs.git/commitdiff
(emacs-startup-time): New variable.
authorGlenn Morris <rgm@gnu.org>
Mon, 11 Feb 2008 00:24:16 +0000 (00:24 +0000)
committerGlenn Morris <rgm@gnu.org>
Mon, 11 Feb 2008 00:24:16 +0000 (00:24 +0000)
(command-line): Set emacs-startup-time.

lisp/startup.el

index e297f7bf029f0264e1322a7fa8496b7c7fefa963..7139b7a5c073749cf06159a74f6d775ec216eebb 100644 (file)
@@ -194,6 +194,9 @@ 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 emacs-startup-hook nil
   "Normal hook run after loading init files and handling the command line.")
 
@@ -625,7 +628,8 @@ opening the first frame (e.g. open a connection to an X server).")
     (nreverse rest)))
 
 (defun command-line ()
-  (setq command-line-default-directory default-directory)
+  (setq emacs-startup-time (current-time)
+        command-line-default-directory default-directory)
 
   ;; Choose a reasonable location for temporary files.
   (custom-reevaluate-setting 'temporary-file-directory)