mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-30 21:10:36 +02:00
SynEdit Highlighter VB: backslash for int div Issue #0027247
git-svn-id: trunk@47350 -
This commit is contained in:
parent
4f51ba5b51
commit
e79a9d4cce
@ -1009,7 +1009,8 @@ begin
|
||||
'(': fProcTable[I] := @SymbolProc;
|
||||
';': fProcTable[I] := @SymbolProc;
|
||||
'/': fProcTable[I] := @SymbolProc;
|
||||
#1..#9, #11, #12, #14..#32: fProcTable[I] := @SpaceProc;
|
||||
'\': fProcTable[I] := @SymbolProc; // integer division
|
||||
#1..#9, #11, #12, #14..#32: fProcTable[I] := @SpaceProc;
|
||||
'*': fProcTable[I] := @SymbolProc;
|
||||
#34: fProcTable[I] := @StringProc;
|
||||
else fProcTable[I] := @UnknownProc;
|
||||
|
Loading…
Reference in New Issue
Block a user