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
a184d9bf
Commit
a184d9bf
authored
Feb 12, 1999
by
Dave Love
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(timezone-make-date-sortable, timezone-make-date-arpa-standard): Doc fix.
parent
86c06e88
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lisp/timezone.el
lisp/timezone.el
+4
-4
No files found.
lisp/timezone.el
View file @
a184d9bf
...
...
@@ -66,9 +66,9 @@ Use `current-time-zone' instead.")
(
defun
timezone-make-date-arpa-standard
(
date
&optional
local
timezone
)
"Convert DATE to an arpanet standard date.
Optional
1st
argument LOCAL specifies the default local timezone of the DATE;
Optional
2nd
argument LOCAL specifies the default local timezone of the DATE;
if nil, GMT is assumed.
Optional
2n
d argument TIMEZONE specifies a time zone to be represented in;
Optional
3r
d argument TIMEZONE specifies a time zone to be represented in;
if nil, the local time zone is assumed."
(
let
((
new
(
timezone-fix-time
date
local
timezone
)))
(
timezone-make-arpa-date
(
aref
new
0
)
(
aref
new
1
)
(
aref
new
2
)
...
...
@@ -79,9 +79,9 @@ if nil, the local time zone is assumed."
(
defun
timezone-make-date-sortable
(
date
&optional
local
timezone
)
"Convert DATE to a sortable date string.
Optional
1st
argument LOCAL specifies the default local timezone of the DATE;
Optional
2nd
argument LOCAL specifies the default local timezone of the DATE;
if nil, GMT is assumed.
Optional
2n
d argument TIMEZONE specifies a timezone to be represented in;
Optional
3r
d argument TIMEZONE specifies a timezone to be represented in;
if nil, the local time zone is assumed."
(
let
((
new
(
timezone-fix-time
date
local
timezone
)))
(
timezone-make-sortable-date
(
aref
new
0
)
(
aref
new
1
)
(
aref
new
2
)
...
...
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