Home
last modified time | relevance | path

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

/titanic_44/usr/src/cmd/mandoc/
H A Dterm.c437 if (TERMP_SKIPCHAR & p->flags) { in term_word()
438 p->flags &= ~TERMP_SKIPCHAR; in term_word()
513 if (TERMP_SKIPCHAR & p->flags) in term_word()
514 p->flags &= ~TERMP_SKIPCHAR; in term_word()
519 p->flags |= TERMP_SKIPCHAR; in term_word()
560 if (TERMP_SKIPCHAR & p->flags) { in encode1()
561 p->flags &= ~TERMP_SKIPCHAR; in encode1()
589 if (TERMP_SKIPCHAR & p->flags) { in encode()
590 p->flags &= ~TERMP_SKIPCHAR; in encode()
H A Dterm.h77 #define TERMP_SKIPCHAR (1 << 7) /* Skip the next character. */ macro