mirror of https://gitlab.com/basile.b/dexed.git
fix, wrong charset tested, some symbols were not bold
This commit is contained in:
parent
ab5ded0c5f
commit
570c279fd8
|
@ -148,7 +148,7 @@ begin
|
|||
|
||||
// text
|
||||
fToken := tkTxt;
|
||||
while not (isSymbol(fLineBuf[fTokStop]) or isWhite(fLineBuf[fTokStop])) do
|
||||
while not ((fLineBuf[fTokStop] in txtSym) or isWhite(fLineBuf[fTokStop])) do
|
||||
begin
|
||||
Inc(fTokStop);
|
||||
if fLineBuf[fTokStop] = #10 then exit;
|
||||
|
|
Loading…
Reference in New Issue