|
If you want to fix the version you have, change addtogroup in member-lib.pl. The line that needs to be changed is: if (length($lastline) > $MaxGroupLength) {
change it to: if (!$lastline || length($lastline) > $MaxGroupLength) {
I also changed: print NEWFILE; to: print NEWFILE $lastline if $linecount; but that is less important - you'll get an extra blank line that doesn't appear to matter. |
| Inline: | Outline: |
|
to: |
|
|