diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2011-08-26 09:48:52 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2011-08-26 09:48:52 +0200 |
commit | 30db0d33e00284d06aff0945c01bfbda4a61a830 (patch) | |
tree | dd08598fae1ac3611cc21c86c8653447b188ff41 /examples/apps | |
parent | 813beefb5a0a412f7b606b1d8a92ae71aa71920d (diff) | |
download | fpGUI-30db0d33e00284d06aff0945c01bfbda4a61a830.tar.xz |
ide: new pascal keywords added for syntax highlighting
Diffstat (limited to 'examples/apps')
-rw-r--r-- | examples/apps/ide/src/frm_main.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/apps/ide/src/frm_main.pas b/examples/apps/ide/src/frm_main.pas index b643bd02..a445b76c 100644 --- a/examples/apps/ide/src/frm_main.pas +++ b/examples/apps/ide/src/frm_main.pas @@ -148,7 +148,7 @@ const + '|override|class|unit|program|library|set|of|if|then|for|downto|to|as|div|mod|shr|shl' + '|do|else|while|and|inherited|const|var|initialization|finalization' + '|on|or|in|raise|not|case|record|array|out|resourcestring|default' - + '|xor|repeat|until|constref|stdcall|cdecl|external)\b'; + + '|xor|repeat|until|constref|stdcall|cdecl|external|generic|specialize)\b'; cComments1 = '(\s*\/\/.*$)|(\{[^\{]*\})'; cComments2 = '\{[^\{]*\}'; |