mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-20 18:56:39 +02:00
Add FIXME comments.
This commit is contained in:
@@ -242,7 +242,7 @@ day : tDAY {
|
||||
yyDayOrdinal = 1;
|
||||
yyDayNumber = $1;
|
||||
}
|
||||
| tUNUMBER tDAY {
|
||||
| tUNUMBER tDAY { /* FIXME */
|
||||
yyDayOrdinal = $1;
|
||||
yyDayNumber = $2;
|
||||
}
|
||||
@@ -279,6 +279,7 @@ date : tUNUMBER '/' tUNUMBER {
|
||||
yyYear = $4;
|
||||
}
|
||||
| tUNUMBER tMONTH {
|
||||
/* FIXME: `date -d 'next october'' is interpreted as 2 october. */
|
||||
yyMonth = $2;
|
||||
yyDay = $1;
|
||||
}
|
||||
@@ -314,10 +315,10 @@ relunit : tUNUMBER tMINUTE_UNIT {
|
||||
| tSEC_UNIT {
|
||||
yyRelSeconds++;
|
||||
}
|
||||
| tSNUMBER tMONTH_UNIT {
|
||||
| tSNUMBER tMONTH_UNIT { /* FIXME */
|
||||
yyRelMonth += $1 * $2;
|
||||
}
|
||||
| tUNUMBER tMONTH_UNIT {
|
||||
| tUNUMBER tMONTH_UNIT { /* FIXME */
|
||||
yyRelMonth += $1 * $2;
|
||||
}
|
||||
| tMONTH_UNIT {
|
||||
|
||||
Reference in New Issue
Block a user