Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
90503d96
Commit
90503d96
authored
Oct 06, 2008
by
Chong Yidong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Vbefore_init_time, Vafter_init_time): Moved from startup.el.
parent
8cc11c8c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
src/emacs.c
src/emacs.c
+12
-0
No files found.
src/emacs.c
View file @
90503d96
...
...
@@ -131,6 +131,9 @@ Lisp_Object Vinvocation_directory;
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 @@ was found. */);
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment