diff options
Diffstat (limited to 'unix/mkLinks.tcl')
-rw-r--r-- | unix/mkLinks.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/mkLinks.tcl b/unix/mkLinks.tcl index b0a4a6a..85ef575 100644 --- a/unix/mkLinks.tcl +++ b/unix/mkLinks.tcl @@ -75,7 +75,7 @@ foreach file $argv { while {[gets $in line] >= 0} { switch $state { begin { - if {[regexp "^.SH NAME" $line]} { + if {[string match ".SH NAME*" $line]} { set state name } } |