mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-06-07 15:37:14 +02:00
Return to C89 compliance
This commit is contained in:
@@ -1076,7 +1076,8 @@ ligatureGlyphsForChars(const unichar *chars, CGGlyph *glyphs, CGPoint *positions
|
||||
}
|
||||
}
|
||||
// fixup relative positioning
|
||||
for( CFIndex i = 0; i < offset; ++i ) {
|
||||
CFIndex i;
|
||||
for( i = 0; i < offset; ++i ) {
|
||||
positions[i].x += refPos.x;
|
||||
positions[i].y += refPos.y;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user