Skip to content

Commit

Permalink
fix string index
Browse files Browse the repository at this point in the history
  • Loading branch information
pchev committed Feb 4, 2019
1 parent eb63d09 commit 95ee7fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skychart/u_util.pas
Expand Up @@ -692,7 +692,7 @@ function ExpandTab(str: string; tabwidth: integer): string;

for j := 1 to length(str) do
begin
c := str[j - 1];
c := str[j];

if c = tab then
begin
Expand Down

0 comments on commit 95ee7fb

Please sign in to comment.