From 04d69ec29fbbefbfbafbfc1050a48cf97a513f19 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 13 Dec 2014 21:15:56 -0800 Subject: Makefile fixes for man page. Don't build man pages until we've built libcmark, which we need. Also reverted use of typewriter font for signatures; this looks worse in the terminal pager. --- man/make_man_page.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'man/make_man_page.py') diff --git a/man/make_man_page.py b/man/make_man_page.py index 94c4d6a..dd226e6 100644 --- a/man/make_man_page.py +++ b/man/make_man_page.py @@ -47,7 +47,7 @@ single_quote_re = re.compile("(?\\\\f[]', re.sub(single_quote_re, '\\\\f[CI]\g<1>\\\\f[]', s)) + return re.sub(double_quote_re, '\\\\fB\g<1>\\\\f[]', re.sub(single_quote_re, '\\\\fI\g<1>\\\\f[]', s)) typedef = False mdlines = [] @@ -92,17 +92,17 @@ with open(sourcefile, 'r') as cmarkh: rawsig = ''.join(sig) m = function_re.match(rawsig) if m: - mdlines.append('\\f[CI]' + m.group('type') + '\\f[]' + ' ') - mdlines.append('\\f[CB]' + m.group('name') + '\\f[]' + '(') + mdlines.append('\\fI' + m.group('type') + '\\f[]' + ' ') + mdlines.append('\\fB' + m.group('name') + '\\f[]' + '(') first = True for argument in re.split(',', m.group('args')): if not first: mdlines.append(', ') first = False - mdlines.append('\\f[CI]' + argument.strip() + '\\f[]') + mdlines.append('\\fI' + argument.strip() + '\\f[]') mdlines.append(')\n') else: - mdlines.append('.nf\n\\f[C]\n.RS 0n\n') + mdlines.append('.nf\n\\fC\n.RS 0n\n') mdlines += sig mdlines.append('.RE\n\\f[]\n.fi\n') if len(mdlines) > 0 and mdlines[-1] != '\n': -- cgit v1.2.3