rustdoc: Add a primitive page for raw pointers

Closes #15318
This commit is contained in:
Alex Crichton
2015-04-06 15:58:23 -07:00
parent c9c7be78db
commit 9ad133b4a1
10 changed files with 90 additions and 5 deletions

View File

@@ -186,7 +186,8 @@ def concat_multi_lines(f):
firstlineno = firstlineno or lineno
if line.endswith('\\'):
lastline = line[:-1]
if lastline is None:
lastline = line[:-1]
catenated += line[:-1]
else:
yield firstlineno, catenated + line