CVSROOT: /cvs Module name: src Changes by: [email protected] 2025/07/26 02:28:26
Modified files:
usr.bin/mandoc : mdoc_validate.c
Log message:
Delete a minor amount of dead code in post_dd():
The node cannot be NULL in this function because at the only place this
function is called in mdoc_validate(), it was set right before the
switch and n->tok was actually used to select the handler post_dd().
Besides, if n was ever NULL, accessing n->child would be a bad idea.
