commit | 0e413e53e9d77191ae3fd9663e5a90e906711fa6 | [log] [tgz] |
---|---|---|
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | Fri May 05 14:05:21 2006 +0000 |
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | Fri May 05 14:05:21 2006 +0000 |
tree | 76b049fd64279f119cfee34613119c6138ed682f | |
parent | 4f7953cc3c9da5b19ae9995c45a7c943f66f01c5 [diff] [blame] |
- ignore missing helptext for options which are not selectable.
diff --git a/scripts/checkhelp.awk b/scripts/checkhelp.awk index 1a7e0ea..85d0661 100755 --- a/scripts/checkhelp.awk +++ b/scripts/checkhelp.awk
@@ -23,6 +23,9 @@ /^[[:space:]]*help[[:space:]]*$/ { help[pos] = 1; } +/^[[:space:]]*bool[[:space:]]*$/ { + help[pos] = 1; # ignore options which are not selectable +} BEGIN { pos = -1; is_choice = 0;