Lines Matching refs:date
39 "[+DESCRIPTION?\brelease\b lists the changes within the date range specified"
41 " contain date tag lines of the form [\acc\a]]\ayy-mm-dd\a [ \atext\a ]]"
44 " can be patented?, how about 1+1=2?.) The date tag lines are followed by"
50 "[f:from?Entries older than \adate\a are omitted.]:[date]"
52 " A release mark has a date tag followed by optional space and at least"
54 " listed. If there are no release marks then the date range is used;"
55 " if there is at least one release mark then the date range is ignored"
57 "[t:to?Entries newer than \adate\a are omitted.]:[date]"
93 fprintf(stderr, "Usage: release [-V] [-h hi-date] [-l lo-date] [-r count] [ file ...]\n");
135 date(char* s, char** e)
218 if (!(lo = date(opt_info.arg, &e)) || *e)
220 error(2, "%s: invalid from date [%s]", opt_info.arg, e);
228 if (!(hi = date(opt_info.arg, &e)) || *e)
230 error(2, "%s: invalid to date [%s]", opt_info.arg, e);
275 if (!(t = date(v, &e)) || *e)
277 fprintf(stderr, "release: -%c%s: invalid date [%s]\n", i, s, e);
332 if (t = date(s, &e))