Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8f0ab358
Commit
8f0ab358
authored
Sep 06, 1999
by
Richard M. Stallman
Browse files
(vc-annotate-display): Use < 69 not < 70 to distinguish 20YY from 19YY.
parent
84f72c5b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lisp/vc.el
lisp/vc.el
+4
-4
No files found.
lisp/vc.el
View file @
8f0ab358
...
...
@@ -5,7 +5,7 @@
;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
;; Maintainer: Andre Spiegel <spiegel@inf.fu-berlin.de>
;; $Id: vc.el,v 1.25
2
1999/09/0
2 12:50:28 eliz
Exp rms $
;; $Id: vc.el,v 1.25
3
1999/09/0
6 03:46:33 rms
Exp rms $
;; This file is part of GNU Emacs.
...
...
@@ -2474,9 +2474,9 @@ THRESHOLD, nil otherwise"
(day (string-to-number (match-string 1)))
(month (cdr (assoc (match-string 2) local-month-numbers)))
(year-tmp (string-to-number (match-string 3)))
;; Years 0..6
9
are 2000..206
9
.
;; Years
70
..99 are 19
70
..1999.
(year (+ (cond ((>
70
year-tmp) 2000)
;; Years 0..6
8
are 2000..206
8
.
;; Years
69
..99 are 19
69
..1999.
(year (+ (cond ((>
69
year-tmp) 2000)
((> 100 year-tmp) 1900)
(t 0))
year-tmp))
...
...
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