Lines Matching defs:use_hl_date
697 dateof(struct tm *tm, struct message *mp, int use_hl_date)
731 if (use_hl_date == 0 &&
783 if (debug && use_hl_date == 0)
981 preformat(struct tm *tm, const char *oldfmt, struct message *mp, int use_hl_date)
997 dateof(tm, mp, use_hl_date);
1024 * If a format string begins with the USE_HL_DATE string, smsgprintf
1031 #define USE_HL_DATE "%??"
1037 int use_hl_date;
1042 if (strncmp(fmtstr, USE_HL_DATE, sizeof(USE_HL_DATE) - 1) != 0)
1043 use_hl_date = 0;
1045 use_hl_date = 1;
1046 fmtstr += sizeof(USE_HL_DATE) - 1;
1050 newfmt = preformat(&tm, fmtstr, mp, use_hl_date);