Subject: | Only one charecter menu items are chosen |
I have a menu prompt with 50 some items in it. I noticed that picking Item 43, for example,
would take me to item 4. Rooting around a little it turns out the problem is with line 118. Where
you have:
$tag =~ s{\A\s*(\S?).*}{$1}xms;
changed to:
$tag =~ s{\A\s*(\S*).*}{$1}xms;
fixed the problem. If you can point me to the proper source repository I can create an actual
patch, or I can create one against the gitpan sources.
-Chris