Hey Pablo, On Sun, Dec 19, 2021 at 12:09:36PM +1100, Duncan Roe wrote: > Function del_def_at_lines() removes lines of the form: > > Definition at line <nnn> of file ... > > At doxygen 1.9.2, <nnn> is displayed in bold, so upgrade the regex to match > an optional bold / normal pair around <nnn> > > Signed-off-by: Duncan Roe <duncan_roe@xxxxxxxxxxxxxxx> > --- > v2: Expand commit message as pablo requested > v3: same as v2 but has these vn: lines > doxygen/build_man.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/doxygen/build_man.sh b/doxygen/build_man.sh > index 852c7b8..c68876c 100755 > --- a/doxygen/build_man.sh > +++ b/doxygen/build_man.sh > @@ -96,7 +96,7 @@ fix_double_blanks(){ > del_def_at_lines(){ > linnum=1 > while [ $linnum -ne 0 ] > - do mygrep "^Definition at line [[:digit:]]* of file" $target > + do mygrep '^Definition at line (\\fB)?[[:digit:]]*(\\fP)? of file' $target > [ $linnum -eq 0 ] || delete_lines $(($linnum - 1)) $linnum > done > } > -- > 2.17.5 > You didn't apply this yet. Any reason (apart from being too busy)? On the subject of being too busy, have you considered delegating supervision of libnetfilter_queue to somebody else in the core team? I notice Florian W. checked in a new examples/nf-queue.c yesterday. Cheers ... Duncan.