Skip to content

Commit

Permalink
Update c_cmds.pas
Browse files Browse the repository at this point in the history
  • Loading branch information
jval1972 committed Apr 24, 2022
1 parent 7ed1792 commit 23a7723
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Base/c_cmds.pas
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ procedure C_AddCmd(const name: string; proc: cmdproc_t);
end
else
begin
splitstring(name, name1, name2, CMDSPLITSTR);
splitstring_ch(name, name1, name2, CMDSPLITSTR);
C_AddCmd(name1, proc);
C_AddCmd(name2, proc);
end;
Expand All @@ -181,7 +181,7 @@ function C_ExecuteCmd(const name: string): boolean;
name1,
parm: string;
begin
splitstring(name, name1, parm);
splitstring_ch(name, name1, parm);
result := C_ExecuteCmd(name1, parm);
end;

Expand All @@ -195,7 +195,7 @@ function C_ExecuteCmd(const name: string; const parm: string): boolean;
parm1,
parm2: string;
begin
splitstring(parm, parm1, parm2);
splitstring_ch(parm, parm1, parm2);
result := C_ExecuteCmd(name, parm1, parm2);
end;

Expand Down

0 comments on commit 23a7723

Please sign in to comment.