wmlscope: never consider macro definitions as part of the file docstring
This commit is contained in:
parent
13fa4ba194
commit
4be3eb580a
1 changed files with 1 additions and 1 deletions
|
@ -364,7 +364,7 @@ class CrossRefLister(CrossRef):
|
|||
line = line.lstrip()
|
||||
if line and line.startswith("#textdomain"):
|
||||
continue
|
||||
if line and line[0] == '#':
|
||||
if line and line[0] == '#' and (not line.startswith("#define")):
|
||||
hdr.append(line[1:])
|
||||
else:
|
||||
break
|
||||
|
|
Loading…
Add table
Reference in a new issue