diff --git a/lib/libutil/parsedate.3 b/lib/libutil/parsedate.3 index 746cf1b310c2..e71c2d492f85 100644 --- a/lib/libutil/parsedate.3 +++ b/lib/libutil/parsedate.3 @@ -1,4 +1,4 @@ -.\" $NetBSD: parsedate.3,v 1.20 2015/12/10 21:32:35 wiz Exp $ +.\" $NetBSD: parsedate.3,v 1.21 2016/06/26 07:09:24 kre Exp $ .\" .\" Copyright (c) 2006 The NetBSD Foundation, Inc. .\" All rights reserved. @@ -131,11 +131,7 @@ The following words are recognized in English only: .Dv p.m. , .Dv midnight , .Dv mn , -.Dv noon , -.Dv dawn , -.Dv sunup , -.Dv sunset , -.Dv sundown . +.Dv noon . .Pp The months: .Dv january , diff --git a/lib/libutil/parsedate.y b/lib/libutil/parsedate.y index ffd3d5ccda8e..48fd033e76bd 100644 --- a/lib/libutil/parsedate.y +++ b/lib/libutil/parsedate.y @@ -14,7 +14,7 @@ #include #ifdef __RCSID -__RCSID("$NetBSD: parsedate.y,v 1.28 2016/05/03 18:14:54 kre Exp $"); +__RCSID("$NetBSD: parsedate.y,v 1.29 2016/06/26 07:09:24 kre Exp $"); #endif #include @@ -587,10 +587,6 @@ static const TABLE TimeNames[] = { { "mn", tTIME, 0 }, { "noon", tTIME, 12 }, { "midday", tTIME, 12 }, - { "dawn", tTIME, 6 }, - { "sunup", tTIME, 6 }, - { "sunset", tTIME, 18 }, - { "sundown", tTIME, 18 }, { NULL, 0, 0 } };