if continuation line starts with a tab, rewrite it to a space

This commit is contained in:
Kurt Zeilenga 2001-05-12 18:43:06 +00:00
parent 977cee7ffd
commit 0445405299

View file

@ -2025,6 +2025,9 @@ fp_getline( FILE *fp, int *lineno )
return( line );
}
/* change leading whitespace to a space */
buf[0] = ' ';
CATLINE( buf );
(*lineno)++;
}