mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-11 02:48:31 +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;
|
||||
#$e3:
|
||||
case Line[1] of
|
||||
#$80:
|
||||
if (Line[2] >= #$80) and (Line[2] <= #$be) then PWidths^ := 2;
|
||||
#$81:
|
||||
if (Line[2] >= #$81) then PWidths^ := 2;
|
||||
#$82..#$8e:
|
||||
|
Loading…
Reference in New Issue
Block a user