Skip to content

Commit 54d397d

Browse files
committed
Print Using: Fix Tab/Spc mix-up (0576525 regression)
1 parent a48d4e9 commit 54d397d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compiler/rtl-print.bas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -808,9 +808,9 @@ function rtlPrintSPCTab _
808808

809809
''
810810
if( istab ) then
811-
proc = astNewCALL( PROCLOOKUP( PRINTSPC ) )
812-
else
813811
proc = astNewCALL( PROCLOOKUP( PRINTTAB ) )
812+
else
813+
proc = astNewCALL( PROCLOOKUP( PRINTSPC ) )
814814
end if
815815

816816
'' byval filenum as integer

0 commit comments

Comments
 (0)