[build/doc] Add support for STR_LIST

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-03-27 18:02:53 +01:00
parent ced72a959f
commit d25ff609ca
1 changed files with 2 additions and 0 deletions

View File

@ -61,6 +61,8 @@ def sections_get(file):
section_doc[option_title] += "This option must be an alignment value." section_doc[option_title] += "This option must be an alignment value."
elif line.startswith(" CFG_POSITION"): elif line.startswith(" CFG_POSITION"):
section_doc[option_title] += "This option must be a position value." section_doc[option_title] += "This option must be a position value."
elif line.startswith(" CFG_STR_LIST"):
section_doc[option_title] += "This option must be string list."
elif line.startswith(" CFG_STR"): elif line.startswith(" CFG_STR"):
section_doc[option_title] += "This option must be string value." section_doc[option_title] += "This option must be string value."
elif line.startswith(" CFG_SEC"): elif line.startswith(" CFG_SEC"):