changeset 476:0c45beac2dc5

Add FIXME comments.
author Jim Meyering <jim@meyering.net>
date Mon, 07 Aug 1995 16:07:28 +0000
parents 7e3e0dd559c7
children c30155ecefad
files lib/getdate.y
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lib/getdate.y
+++ b/lib/getdate.y
@@ -242,7 +242,7 @@
 	    yyDayOrdinal = 1;
 	    yyDayNumber = $1;
 	}
-	| tUNUMBER tDAY {
+	| tUNUMBER tDAY { /* FIXME */
 	    yyDayOrdinal = $1;
 	    yyDayNumber = $2;
 	}
@@ -279,6 +279,7 @@
 	    yyYear = $4;
 	}
 	| tUNUMBER tMONTH {
+	    /* FIXME: `date -d 'next october'' is interpreted as 2 october.  */
 	    yyMonth = $2;
 	    yyDay = $1;
 	}
@@ -314,10 +315,10 @@
 	| 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 {