Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
lyskom-elisp-client
lyskom-elisp-client
Commits
ebb63b2c
Commit
ebb63b2c
authored
Apr 25, 2001
by
Joel Rosdahl
Browse files
Don't subtract 1900 from year.
parent
e85a270e
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/ChangeLog
View file @
ebb63b2c
2001-04-25 Joel Rosdahl <joel@rosdahl.net>
* mship-edit.el (lyskom-read-time): Don't subtract 1900 from year.
2001-04-25 David Byers <davby@ida.liu.se>
* english-strings.el (lyskom-filter-actions): Add string for read
...
...
src/mship-edit.el
View file @
ebb63b2c
...
...
@@ -1560,7 +1560,8 @@ Medlemskap f
(or (elt time 2) 0)
(or (elt time 3) 1)
(or (elt time 4) 1)
(- (or (elt time 5) (elt (decode-time (current-time)) 5)) 1900)
(or (elt time 5)
(elt (decode-time (current-time)) 5))
nil
nil
nil))))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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