mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-24 09:19:14 +02:00
SynEdit: Fixed double width chars $3000-$303E which were not detected correctly.
git-svn-id: trunk@45019 -
This commit is contained in:
parent
34371d34aa
commit
8d0980f7f9
@ -84,6 +84,8 @@ begin
|
|||||||
end;
|
end;
|
||||||
#$e3:
|
#$e3:
|
||||||
case Line[1] of
|
case Line[1] of
|
||||||
|
#$80:
|
||||||
|
if (Line[2] >= #$80) and (Line[2] <= #$be) then PWidths^ := 2;
|
||||||
#$81:
|
#$81:
|
||||||
if (Line[2] >= #$81) then PWidths^ := 2;
|
if (Line[2] >= #$81) then PWidths^ := 2;
|
||||||
#$82..#$8e:
|
#$82..#$8e:
|
||||||
|
Loading…
Reference in New Issue
Block a user