Lines Matching refs:codep
309 char *codep; in ptout1() local
393 codep = t.tfont.wp[k].str+1; /* Troffchar by default */ in ptout1()
394 while (*codep != 0) { in ptout1()
395 if (*codep & 0200) { in ptout1()
396 codep = plot(codep); in ptout1()
399 if (*codep == '%') /* escape */ in ptout1()
400 codep++; in ptout1()
401 oput(*codep); in ptout1()
402 if (*codep == '\033') in ptout1()
403 oput(*++codep); in ptout1()
404 else if (*codep != '\b') in ptout1()
407 oput(*codep); in ptout1()
409 codep++; in ptout1()