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
4d4c1514
Commit
4d4c1514
authored
Oct 30, 1995
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fencode_time): Add cast.
(Fset_time_zone_rule): Add cast.
parent
cfc57cea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/editfns.c
src/editfns.c
+2
-2
No files found.
src/editfns.c
View file @
4d4c1514
...
...
@@ -737,7 +737,7 @@ If you want them to stand for years in this century, you must do that yourself."
char
**
oldenv
=
environ
,
**
newenv
;
if
(
STRINGP
(
zone
))
tzstring
=
XSTRING
(
zone
)
->
data
;
tzstring
=
(
char
*
)
XSTRING
(
zone
)
->
data
;
else
if
(
INTEGERP
(
zone
))
{
int
abszone
=
abs
(
XINT
(
zone
));
...
...
@@ -893,7 +893,7 @@ If TZ is nil, use implementation-defined default time zone information.")
else
{
CHECK_STRING
(
tz
,
0
);
tzstring
=
XSTRING
(
tz
)
->
data
;
tzstring
=
(
char
*
)
XSTRING
(
tz
)
->
data
;
}
set_time_zone_rule
(
tzstring
);
...
...
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