diff options
Diffstat (limited to 'mkusage.pl')
-rw-r--r-- | mkusage.pl | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,8 @@ print "char *usage_opts[] = {\n"; while(<>) { chomp; - if(/^-[a-zA-Z\d]/) { + next if /^---/; + if(/^-[-a-zA-Z\d]/) { $opt = $_; next; } |