mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-27 16:20:35 +02:00
CodeTools: ofall() code macro: fix indentation. Issue #35802
git-svn-id: trunk@62245 -
This commit is contained in:
parent
b21a3831c1
commit
398f3b3c49
@ -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:='';
|
||||
|
Loading…
Reference in New Issue
Block a user