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
a7971c39
Commit
a7971c39
authored
Jun 06, 1993
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fcurrent_time_zone): Add alternative for !HAVE_TM_ZONE.
parent
4c074483
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
src/editfns.c
src/editfns.c
+5
-0
No files found.
src/editfns.c
View file @
a7971c39
...
...
@@ -656,7 +656,12 @@ the data it can't find.")
#ifdef HAVE_TM_ZONE
if
(
t
->
tm_zone
)
s
=
t
->
tm_zone
;
#else
/* not HAVE_TM_ZONE */
#ifdef HAVE_TZNAME
if
(
t
->
tm_isdst
==
0
||
t
->
tm_isdst
==
1
)
s
=
tzname
[
t
->
tm_isdst
];
#endif
#endif
/* not HAVE_TM_ZONE */
if
(
!
s
)
{
/* No local time zone name is available; use "+-NNNN" instead. */
...
...
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