CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2019/01/04 18:29:21
Modified files:
usr.bin/mandoc : man_term.c
Log message:
minor cleanup, no functional change:
* in node type switches, explicitly handle all types, sort them,
and abort() on those that cannot occur
* avoid testing pointers as truth values, use "!= NULL"
* avoid testing "constant == variable", use "variable == constant"
* prefer sizeof(var) over sizeof(type)
* delete one duplicate function
* sort some declarations
* delete some useless blank lines