aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/checkhelp.awk3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/checkhelp.awk b/scripts/checkhelp.awk
index 1a7e0ea8e..85d0661a7 100755
--- a/scripts/checkhelp.awk
+++ b/scripts/checkhelp.awk
@@ -23,6 +23,9 @@
23/^[[:space:]]*help[[:space:]]*$/ { 23/^[[:space:]]*help[[:space:]]*$/ {
24 help[pos] = 1; 24 help[pos] = 1;
25} 25}
26/^[[:space:]]*bool[[:space:]]*$/ {
27 help[pos] = 1; # ignore options which are not selectable
28}
26BEGIN { 29BEGIN {
27 pos = -1; 30 pos = -1;
28 is_choice = 0; 31 is_choice = 0;