diff options
author | Jim Meyering <jim@meyering.net> | 1999-08-29 14:55:24 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-08-29 14:55:24 +0000 |
commit | d45400c9a9f133e252f542044b2e3bee8916b196 (patch) | |
tree | 4a9a8f5fac2f9b9b36c12ce77bc0be0f0c25b5e8 /lib | |
parent | 81eda26bebeac79265f772c55d0f87270470616c (diff) | |
download | coreutils-d45400c9a9f133e252f542044b2e3bee8916b196.tar.xz |
(relative_time_table): Change `type' of `THIS' from
tMINUTE_UNIT to tUNUMBER. From Urs Thuermann.
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 c29c6c77c..e67af871e 100644 --- a/lib/getdate.y +++ b/lib/getdate.y @@ -503,7 +503,7 @@ static table const relative_time_table[] = { "TODAY", tMINUTE_UNIT, 0 }, { "NOW", tMINUTE_UNIT, 0 }, { "LAST", tUNUMBER, -1 }, - { "THIS", tMINUTE_UNIT, 0 }, + { "THIS", tUNUMBER, 0 }, { "NEXT", tUNUMBER, 1 }, { "FIRST", tUNUMBER, 1 }, /*{ "SECOND", tUNUMBER, 2 }, */ |