mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-05 17:43:35 +03:00
Better dumping of predefined version identifiers.
Also count spaces in order to limit line length to 80.
This commit is contained in:
parent
b9c2a74dbf
commit
2a8b92060f
1 changed files with 1 additions and 1 deletions
|
@ -821,7 +821,7 @@ static void dumpPredefinedVersions()
|
|||
E = global.params.versionids->end();
|
||||
I != E; ++I)
|
||||
{
|
||||
int len = strlen(*I);
|
||||
int len = strlen(*I) + 1;
|
||||
if (col + len > 80)
|
||||
{
|
||||
col = 10;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue