Commit 62d4d65a authored by Dimitri van Heesch's avatar Dimitri van Heesch

Partial revert "Fix for bug 644350: fixed format line continuations."

This _partially_ reverts fixes already applied by the patch from bug 521861.
parent 01055ab4
......@@ -1225,13 +1225,12 @@ static const char* prepassFixedForm(const char* contents)
case 'C':
case 'c':
case '*':
if(column==1) {
emptyLabel=FALSE;
if(column==1)
newContents[j]='!';
emptyLabel=FALSE;
break;
} else {
// proceed to the next rule
}
else
newContents[j]=c;
break;
default:
if(column==6 && emptyLabel) { // continuation
newContents[j]=' ';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment