diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-11-17 04:42:01 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-11-17 04:42:01 +0000 |
commit | abb5b2dbcb6c9aa7c17d201e01e256bd367e0c86 (patch) | |
tree | 7effffaa7445daa596ebda10d54934be2401aafa /gnu/usr.bin/groff/mm/tmac.m | |
parent | fe5461033fd9f1ce751b386e8f0fbd957283aa7d (diff) |
fix Y2K problems
Diffstat (limited to 'gnu/usr.bin/groff/mm/tmac.m')
-rw-r--r-- | gnu/usr.bin/groff/mm/tmac.m | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/groff/mm/tmac.m b/gnu/usr.bin/groff/mm/tmac.m index 5308eed4616..54266de30e7 100644 --- a/gnu/usr.bin/groff/mm/tmac.m +++ b/gnu/usr.bin/groff/mm/tmac.m @@ -3,8 +3,8 @@ .ds RE \\$2 .. .\" -.\" $Id: tmac.m,v 1.2 1997/04/22 14:07:33 kstailey Exp $ -.@revision $Revision: 1.2 $ +.\" $Id: tmac.m,v 1.3 1997/11/17 04:41:54 deraadt Exp $ +.@revision $Revision: 1.3 $ .ig Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. @@ -2620,8 +2620,8 @@ in=\\n[.i] fi=\\n[.u] .d=\\n[.d] nl=\\n[nl] pg=\\n[%] .de AE .. .\" I am planning to use mgm some time :-) -.ie \\n[yr]<50 .ds cov*new-date \\*[MO\\n[mo]] \\n[dy], 20\\n[yr] -.el .ds cov*new-date \\*[MO\\n[mo]] \\n[dy], 19\\n[yr] +.nr *year \\n[yr]+1900 +.ds cov*new-date \\*[MO\\n[mo]] \\n[dy], \\n[*year] .als DT cov*new-date .de ND .ds cov*new-date \\$1 |