Home
last modified time | relevance | path

Searched refs:TERMP_SKIPCHAR (Results 1 – 2 of 2) sorted by relevance

/titanic_50/usr/src/cmd/mandoc/
H A Dterm.c420 if (TERMP_SKIPCHAR & p->flags) { in term_word()
421 p->flags &= ~TERMP_SKIPCHAR; in term_word()
483 if (TERMP_SKIPCHAR & p->flags) in term_word()
484 p->flags &= ~TERMP_SKIPCHAR; in term_word()
489 p->flags |= TERMP_SKIPCHAR; in term_word()
556 if (TERMP_SKIPCHAR & p->flags) { in encode1()
557 p->flags &= ~TERMP_SKIPCHAR; in encode1()
585 if (TERMP_SKIPCHAR & p->flags) { in encode()
586 p->flags &= ~TERMP_SKIPCHAR; in encode()
H A Dterm.h75 #define TERMP_SKIPCHAR (1 << 7) /* Skip the next character. */ macro