1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-02 03:50:36 +00:00

Fix: alignment of first comment line of a TYPE or DECLARE LIBRARY block.

Addresses issue #25.
This commit is contained in:
FellippeHeitor 2018-01-23 11:52:00 -02:00
parent 3a5364e111
commit e02a206a67

View file

@ -10797,7 +10797,9 @@ DO
END IF
x = lhscontrollevel: IF controllevel < lhscontrollevel THEN x = controllevel
IF definingtype = 2 THEN x = x + 1
IF definingtype > 0 THEN definingtype = 2
IF declaringlibrary = 2 THEN x = x + 1
IF declaringlibrary > 0 THEN declaringlibrary = 2
layout$ = SPACE$(x) + layout$
IF linecontinuation THEN layout$ = ""