CodeTools: ofall() code macro: fix indentation. Issue #35802

git-svn-id: trunk@62245 -
This commit is contained in:
ondrej 2019-11-15 21:58:10 +00:00
parent b21a3831c1
commit 398f3b3c49

View File

@ -577,10 +577,9 @@ begin
if not WithoutExtraIndent then
begin
if eoTabsToSpaces in EditorOptions.EditorOpts.SynEditOptions then
Indent := Indent+StringOfChar(' ',EditorOptions.EditorOpts.TabWidth)
else
Indent := Indent+#9;
Indent := Indent
+StringOfChar(#9,EditorOptions.EditorOpts.BlockTabIndent)
+StringOfChar(' ',EditorOptions.EditorOpts.BlockIndent);
end;
Value:='';