[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/emacs.c,v
From: |
Chong Yidong |
Subject: |
[Emacs-diffs] Changes to emacs/src/emacs.c,v |
Date: |
Mon, 06 Oct 2008 16:16:56 +0000 |
CVSROOT: /sources/emacs
Module name: emacs
Changes by: Chong Yidong <cyd> 08/10/06 16:16:56
Index: emacs.c
===================================================================
RCS file: /sources/emacs/emacs/src/emacs.c,v
retrieving revision 1.447
retrieving revision 1.448
diff -u -b -r1.447 -r1.448
--- emacs.c 3 Oct 2008 07:06:33 -0000 1.447
+++ emacs.c 6 Oct 2008 16:16:56 -0000 1.448
@@ -131,6 +131,9 @@
nil means get them only from PATH_LOADSEARCH. */
Lisp_Object Vinstallation_directory;
+/* The values of `current-time' before and after Emacs initialization. */
+Lisp_Object Vbefore_init_time, Vafter_init_time;
+
/* Hook run by `kill-emacs' before it does really anything. */
Lisp_Object Vkill_emacs_hook;
@@ -2497,6 +2500,15 @@
DEFVAR_LISP ("previous-system-time-locale", &Vprevious_system_time_locale,
doc: /* Most recently used system locale for time. */);
Vprevious_system_time_locale = Qnil;
+
+ DEFVAR_LISP ("before-init-time", &Vbefore_init_time,
+ doc: /* Value of `current-time' before Emacs begins
initialization. */);
+ Vbefore_init_time = Qnil;
+
+ DEFVAR_LISP ("after-init-time", &Vafter_init_time,
+ doc: /* Value of `current-time' after loading the init files.
+This is nil during initialization. */);
+ Vafter_init_time = Qnil;
}
/* arch-tag: 7bfd356a-c720-4612-8ab6-aa4222931c2e
- [Emacs-diffs] Changes to emacs/src/emacs.c,v, Glenn Morris, 2008/10/03
- [Emacs-diffs] Changes to emacs/src/emacs.c,v,
Chong Yidong <=
- [Emacs-diffs] Changes to emacs/src/emacs.c,v, Jan Djärv, 2008/10/21
- [Emacs-diffs] Changes to emacs/src/emacs.c,v, Dan Nicolaescu, 2008/10/26
- [Emacs-diffs] Changes to emacs/src/emacs.c,v, Dan Nicolaescu, 2008/10/27
- [Emacs-diffs] Changes to emacs/src/emacs.c,v, Stefan Monnier, 2008/10/27
- [Emacs-diffs] Changes to emacs/src/emacs.c,v, Dan Nicolaescu, 2008/10/28
- [Emacs-diffs] Changes to emacs/src/emacs.c,v, Chong Yidong, 2008/10/29