Lines Matching full:date

47 #define KW_DATE		"Date"
69 time_t date; member
96 "usage: ci [-qV] [-d[date]] [-f[rev]] [-I[rev]] [-i[rev]]\n" in checkin_usage()
119 pb.date = DATE_NOW; in checkin_main()
135 pb.date = DATE_MTIME; in checkin_main()
136 else if ((pb.date = date_parse(rcs_optarg)) == -1) in checkin_main()
137 errx(1, "invalid date"); in checkin_main()
460 * Set the date of the revision to be the last modification in checkin_update()
463 if (pb->date == DATE_MTIME) in checkin_update()
466 /* Date from argv/mtime must be more recent than HEAD */ in checkin_update()
467 if (pb->date != DATE_NOW) { in checkin_update()
469 if (pb->date <= head_date) { in checkin_update()
474 t = gmtime(&pb->date); in checkin_update()
479 errx(1, "%s: Date %s precedes %s in revision %s.", in checkin_update()
533 pb->rcs_msg, pb->date, pb->author) != 0) { in checkin_update()
617 &pb->date, &pb->state, &pb->author); in checkin_init()
642 * Set the date of the revision to be the last modification in checkin_init()
645 if (pb->date == DATE_MTIME) in checkin_init()
652 pb->date, pb->author) != 0) { in checkin_init()
815 * Set the date of the revision to be the last modification
826 pb->date = sb.st_mtime; in checkin_mtimedate()
833 * number, creation date and author, and uses these values instead of
842 checkin_keywordscan(BUF *data, RCSNUM **rev, time_t *date, char **author, in checkin_keywordscan() argument
907 checkin_parsekeyword(buf_get(buf), rev, date, author, state); in checkin_keywordscan()
956 checkin_parsekeyword(char *keystring, RCSNUM **rev, time_t *date, in checkin_parsekeyword() argument
983 if ((*date = date_parse(datestring)) == -1) in checkin_parsekeyword()
984 errx(1, "could not parse date"); in checkin_parsekeyword()
1007 if ((*date = date_parse(datestring)) == -1) in checkin_parsekeyword()
1008 errx(1, "could not parse date"); in checkin_parsekeyword()