Lines Matching defs:mark
713 struct mark {
720 static const struct mark marks[] = {
736 * Mark the indicated messages with the named mark or flags by default.
743 register const struct mark* kp;
744 register char* mark;
749 if ((mark = snarf(str, &f)) && isalpha(*mark)) {
752 if ((next = strchr(mark, ',')) || (next = strchr(mark, '|')))
755 switch (lower(mark[0])) {
757 if (lower(mark[1]) == 'o')
761 if (lower(mark[1]) == 'n')
765 mark += no;
766 if (!(kp = (struct mark*)strsearch(marks, elementsof(marks), sizeof(*marks), strcasecmp, mark, NiL))) {
767 note(0, "%s: unknown mark", mark);
778 } while (mark = next);
784 *(mark - 1) = ' ';
785 else if (mark)
828 mark(char* str)