IDE, EditorOpts: Fix stringcompare for color-names

git-svn-id: trunk@57152 -
This commit is contained in:
martin 2018-01-26 16:26:42 +00:00
parent 7a5ac2ef0c
commit 756867c662

View File

@ -6832,7 +6832,7 @@ begin
l := length(s1)
else
l := length(s2);
while i < l do begin
while i <= l do begin
Result := ord(s1[i]) - ord(s2[i]);
if Result <> 0 then
exit;