Re: [PATCH 2/3] doc-rst:c-domain: function-like macros arguments

2016-09-06 Thread Markus Heiser
Am 06.09.2016 um 14:27 schrieb Jonathan Corbet : > So I'm going into total nit-picking territory here, but since I'm looking > at it and I think the series needs a respin anyway... > > On Wed, 31 Aug 2016 17:29:31 +0200 > Markus Heiser wrote: > >> +m = c_funcptr_sig_re.match(sig) >> +

Re: [PATCH 2/3] doc-rst:c-domain: function-like macros arguments

2016-09-06 Thread Jonathan Corbet
So I'm going into total nit-picking territory here, but since I'm looking at it and I think the series needs a respin anyway... On Wed, 31 Aug 2016 17:29:31 +0200 Markus Heiser wrote: > +m = c_funcptr_sig_re.match(sig) > +if m is None: > +m = c_sig_re.match(sig) > +

[PATCH 2/3] doc-rst:c-domain: function-like macros arguments

2016-08-31 Thread Markus Heiser
From: Markus Heiser Handle signatures of function-like macros well. Don't try to deduce arguments types of function-like macros. Signed-off-by: Markus Heiser --- Documentation/sphinx/cdomain.py | 55 - 1 file changed, 54 insertions(+), 1 deletion(-) dif