xref: /plan9/sys/src/cmd/htmlroff/t13.c (revision 426d2b71458df9b491ba6c167f699b3f1f7b0428)
1 #include "a.h"
2 
3 /*
4  * 13. Hyphenation.
5  */
6 
7 void
t13init(void)8 t13init(void)
9 {
10 	addreq(L("nh"), r_nop, -1);
11 	addreq(L("hy"), r_nop, -1);
12 	addreq(L("hc"), r_nop, -1);
13 	addreq(L("hw"), r_nop, -1);
14 
15 	addesc('%', e_nop, 0);
16 }
17 
18