diff options
author | Jim Meyering <jim@meyering.net> | 1997-06-01 17:15:51 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-06-01 17:15:51 +0000 |
commit | 2c0e561933fe84475495f217a7c42bc61dabdd05 (patch) | |
tree | aeaf71d3ef8f92ed7be38171aa4fabbd7e1ae0f8 /lib | |
parent | a488983890b2aaf73ff1c9fe00f36b3966206105 (diff) | |
download | coreutils-2c0e561933fe84475495f217a7c42bc61dabdd05.tar.xz |
(OtherTable): Interpret `next' as 1 (not 2) units.
Patch from Richard Sharman <rsharman@magmacom.com>.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/getdate.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/getdate.y b/lib/getdate.y index 6c920b0fb..44f2e19c2 100644 --- a/lib/getdate.y +++ b/lib/getdate.y @@ -493,7 +493,7 @@ static TABLE const OtherTable[] = { { "now", tMINUTE_UNIT, 0 }, { "last", tUNUMBER, -1 }, { "this", tMINUTE_UNIT, 0 }, - { "next", tUNUMBER, 2 }, + { "next", tUNUMBER, 1 }, { "first", tUNUMBER, 1 }, /* { "second", tUNUMBER, 2 }, */ { "third", tUNUMBER, 3 }, |