fix, wrong charset tested, some symbols were not bold

This commit is contained in:
Basile Burg 2014-11-26 16:42:19 +01:00
parent ab5ded0c5f
commit 570c279fd8
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ begin
// text // text
fToken := tkTxt; fToken := tkTxt;
while not (isSymbol(fLineBuf[fTokStop]) or isWhite(fLineBuf[fTokStop])) do while not ((fLineBuf[fTokStop] in txtSym) or isWhite(fLineBuf[fTokStop])) do
begin begin
Inc(fTokStop); Inc(fTokStop);
if fLineBuf[fTokStop] = #10 then exit; if fLineBuf[fTokStop] = #10 then exit;