We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04a5653 commit f0dd82bCopy full SHA for f0dd82b
generate_docs.py
@@ -704,8 +704,7 @@ def repl(match):
704
# Remove extra whitespace in lines such as:
705
# #define FILE_CREATED 0x00000002
706
# typedef long LONG;
707
- if (tooltip_text.startswith('#define ') or
708
- (tooltip_text.startswith('typedef ') and ';' in tooltip_text)):
+ if tooltip_text.startswith('#define ') or tooltip_text.startswith('typedef '):
709
tooltip_text = re.sub(r'\s+', ' ', tooltip_text)
710
711
tooltip_text_escaped = escape(tooltip_text).replace('\n', ' ')
0 commit comments