Version number not being displayed correctly.
Status: Alpha
Brought to you by:
runemaster
The NLMake version number is being tracked in the src/nlmake.c file as four separate integers: MajVer, MinVer, Rev, & SubRev. However, when program prints its version number, the Rev and SubRev are not being printed separated by a period. That makes it look like the version is, for instance 1.3.12 (where the next version would be 1.3.13) when it is actually 1.3.1.2 (where the next version would be 1.3.2).
The issue can be resolved by doing something like the following change in src/nlmake.c: