Browse Source

tools: "See Also:" can be a section in documentation, so allow it.

Rusty Russell 15 years ago
parent
commit
15a9d29ced
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/doc_extract-core.c

+ 1 - 1
tools/doc_extract-core.c

@@ -54,7 +54,7 @@ static bool is_section(const char *line, bool one_liner)
 
 	if (!isupper(line[0]))
 		return false;
-	len = strspn(line, IDENT_CHARS);
+	len = strspn(line, IDENT_CHARS" ");
 	if (line[len] != ':')
 		return false;