doc: Remove 'NGHTTP2_EXTERN' from api doc

This commit is contained in:
Tatsuhiro Tsujikawa 2015-05-13 23:39:48 +09:00
parent 38cfc5c47c
commit 0aa17f64c1
1 changed files with 1 additions and 0 deletions

View File

@ -222,6 +222,7 @@ def process_function(domain, infile):
func_proto = ''.join(func_proto)
func_proto = re.sub(r';\n$', '', func_proto)
func_proto = re.sub(r'\s+', ' ', func_proto)
func_proto = re.sub(r'NGHTTP2_EXTERN ', '', func_proto)
return FunctionDoc(func_proto, content, domain)
def read_content(infile):