- ignore missing helptext for options which are not selectable.
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Fri, 5 May 2006 14:05:21 +0000 (14:05 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Fri, 5 May 2006 14:05:21 +0000 (14:05 -0000)
scripts/checkhelp.awk

index 1a7e0ea8e56d3c91a95ba00325e305c8ee2ea9a6..85d0661a7ce8d689d35a5087e2737ef3ad3df89f 100755 (executable)
@@ -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;