From 8922b85d6bb5072441468ea24e764a825b9e1d9f Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Mon, 12 Aug 2019 19:27:10 +0100 Subject: fenv: Update makedocbook for eae68bfc Teach makedocbook how to handle some new things seen in the makedoc markup since eae68bfc: - 'link with' lines appearing in SYNOPSIS sections Also, don't raise a NoneType exception when there's something we don't know how to handle in a SYNOPSIS section, just exit. --- newlib/doc/makedocbook.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'newlib/doc') diff --git a/newlib/doc/makedocbook.py b/newlib/doc/makedocbook.py index cf48c3402..97255345d 100755 --- a/newlib/doc/makedocbook.py +++ b/newlib/doc/makedocbook.py @@ -297,6 +297,8 @@ def synopsis(c, t): # preprocessor # directives, structs, comments in square brackets funcsynopsisinfo = lxml.etree.SubElement(funcsynopsis, 'funcsynopsisinfo') funcsynopsisinfo.text = l.strip() + '\n' + elif re.match('[Ll]ink with', l): + pass else: s = s + l @@ -312,7 +314,7 @@ def synopsis(c, t): if s.strip(): print("surplus synopsis '%s'" % s, file=sys.stderr) - raise + exit(1) def synopsis_for_prototype(funcsynopsis, s): s = s.strip() -- cgit v1.2.3