1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Comment adjustment.

This commit is contained in:
Sergey Prigogin 2011-04-17 03:59:09 +00:00
parent 9a3e8b0073
commit cf077ca4a0

View file

@ -55,7 +55,7 @@ public class Scribe {
public Token currentToken;
// edits management
// Edits management
private OptimizedReplaceEdit[] edits;
public int editsIndex;
@ -1578,7 +1578,7 @@ public class Scribe {
return;
}
if (lastNumberOfNewLines >= 1) {
// ensure that the scribe is at the beginning of a new line
// Ensure that the scribe is at the beginning of a new line
// only if no specific indentation has been previously set
if (!preserveLineBreakIndentation) {
column = 1;
@ -1888,7 +1888,7 @@ public class Scribe {
break;
}
}
// step back one token
// Step back one token
scanner.resetTo(currentTokenStartPosition, scannerEndPosition - 1);
return !isFirstModifier;
}