Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
afe9fae9
Commit
afe9fae9
authored
Jul 27, 1993
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(main): Test LOCALTIME_CACHE.
parent
8cbd32b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/emacs.c
src/emacs.c
+6
-6
No files found.
src/emacs.c
View file @
afe9fae9
...
...
@@ -603,14 +603,14 @@ main (argc, argv, envp)
initialized
=
1
;
#ifdef
sun
/* sun's localtime
()
has a bug. it caches the value of the time
#if
def
ined (sun) || defined (LOCALTIME_CACHE)
/* sun's localtime has a bug. it caches the value of the time
zone rather than looking it up every time. Since localtime() is
called to bolt the undumping time into the undumped emacs, this
results in localtime
()
ignoring the TZ environment variable.
This flushes the new TZ value into localtime
()
. */
tzset
();
#endif
/*
sun
*/
results in localtime ignoring the TZ environment variable.
This flushes the new TZ value into localtime. */
tzset
();
#endif
/*
defined (sun) || defined (LOCALTIME_CACHE)
*/
/* Enter editor command loop. This never returns. */
Frecursive_edit
();
...
...
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