From 75fd4af7781a38391d66b6e26a643136134cd9fa Mon Sep 17 00:00:00 2001 From: wp_xxyyzz Date: Wed, 18 Apr 2018 23:43:21 +0000 Subject: [PATCH] extrasyn: rename synedit.inc to extrasyn.inc to avoid compiler warning. git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6321 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- .../extrasyn/SyneditHighlighters/SynHighlighter8051.pas | 7 ++++--- .../extrasyn/SyneditHighlighters/SynHighlighterLua.pas | 7 ++++--- .../extrasyn/SyneditHighlighters/SynHighlighterProlog.pas | 7 ++++--- .../SyneditHighlighters/{synedit.inc => extrasyn.inc} | 0 .../SyneditHighlighters/synhighlighteradsp21xx.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterasm.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterawk.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterbaan.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlightercac.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlightercache.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlightercobol.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlightercs.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterdml.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterdot.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlightereiffel.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterfortran.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterfoxpro.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlightergalaxy.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlightergeneral.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlightergnuplot.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlightergws.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterhaskell.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterhp48.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighteridl.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterinno.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterkix.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterldraw.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterm3.pas | 5 ++++- .../SyneditHighlighters/synhighlightermodelica.pas | 5 ++++- .../SyneditHighlighters/synhighlighterprogress.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterrc.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterruby.pas | 7 ++++--- .../extrasyn/SyneditHighlighters/synhighlightersdd.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlightersml.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterst.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlightertcltk.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighterunreal.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlighteruri.pas | 5 ++++- .../SyneditHighlighters/synhighlightervbscript.pas | 5 ++++- .../extrasyn/SyneditHighlighters/synhighlightervrml97.pas | 5 ++++- 40 files changed, 156 insertions(+), 47 deletions(-) rename components/extrasyn/SyneditHighlighters/{synedit.inc => extrasyn.inc} (100%) diff --git a/components/extrasyn/SyneditHighlighters/SynHighlighter8051.pas b/components/extrasyn/SyneditHighlighters/SynHighlighter8051.pas index 9f512dedb..dffcf4309 100644 --- a/components/extrasyn/SyneditHighlighters/SynHighlighter8051.pas +++ b/components/extrasyn/SyneditHighlighters/SynHighlighter8051.pas @@ -42,9 +42,10 @@ The highlighter formats 8051 source code highlighting keywords, strings, numbers unit SynHighlighter8051; -//SynEdit.inc is the synedit.inc from laz 1.2.0 synedit package source if it has changed -//in newer version you might need to copy it again. Remember to redclare the syn_lazarus define. -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/SynHighlighterLua.pas b/components/extrasyn/SyneditHighlighters/SynHighlighterLua.pas index 1778065eb..631be51a8 100644 --- a/components/extrasyn/SyneditHighlighters/SynHighlighterLua.pas +++ b/components/extrasyn/SyneditHighlighters/SynHighlighterLua.pas @@ -42,9 +42,10 @@ The highlighter formats Lua Script source code highlighting keywords, strings, n unit SynHighlighterLua; - //SynEdit.inc is the synedit.inc from laz 1.2.0 synedit package source if it has changed - //in newer version you might need to copy it again. REmeber to redclare the syn_lazarus define. -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/SynHighlighterProlog.pas b/components/extrasyn/SyneditHighlighters/SynHighlighterProlog.pas index 1e6c95d22..3a70a9cad 100644 --- a/components/extrasyn/SyneditHighlighters/SynHighlighterProlog.pas +++ b/components/extrasyn/SyneditHighlighters/SynHighlighterProlog.pas @@ -42,9 +42,10 @@ The highlighter formats Prolog source code highlighting keywords, strings, numbe unit SynHighlighterProlog; -//SynEdit.inc is the synedit.inc from laz 1.2.0 synedit package source if it has changed -//in newer version you might need to copy it again. REmeber to redclare the syn_lazarus define. -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synedit.inc b/components/extrasyn/SyneditHighlighters/extrasyn.inc similarity index 100% rename from components/extrasyn/SyneditHighlighters/synedit.inc rename to components/extrasyn/SyneditHighlighters/extrasyn.inc diff --git a/components/extrasyn/SyneditHighlighters/synhighlighteradsp21xx.pas b/components/extrasyn/SyneditHighlighters/synhighlighteradsp21xx.pas index f47326bfc..528a4b6f9 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighteradsp21xx.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighteradsp21xx.pas @@ -43,7 +43,10 @@ The SynHighlighterADSP21xx unit provides a ADSP21xx DSP assembler highlighter fo } unit SynHighlighterADSP21xx; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterasm.pas b/components/extrasyn/SyneditHighlighters/synhighlighterasm.pas index 6e70d267e..d4aead27e 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterasm.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterasm.pas @@ -45,7 +45,10 @@ Thanks to Martin Waldenburg, Hideo Koiso. } unit SynHighlighterAsm; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterawk.pas b/components/extrasyn/SyneditHighlighters/synhighlighterawk.pas index 145cba8f0..5a4bac63e 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterawk.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterawk.pas @@ -45,7 +45,10 @@ unit SynHighlighterAWK; interface -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} uses Graphics, diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterbaan.pas b/components/extrasyn/SyneditHighlighters/synhighlighterbaan.pas index 34113fc74..d3854393b 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterbaan.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterbaan.pas @@ -44,7 +44,10 @@ Thanks to Martin Waldenburg. } unit SynHighlighterBaan; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlightercac.pas b/components/extrasyn/SyneditHighlighters/synhighlightercac.pas index 8322a28a6..d034a5460 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlightercac.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlightercac.pas @@ -44,7 +44,10 @@ Thanks to Primoz Gabrijelcic, Andy Jeffries. } unit SynHighlighterCAC; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlightercache.pas b/components/extrasyn/SyneditHighlighters/synhighlightercache.pas index 29ebad433..7172d07b7 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlightercache.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlightercache.pas @@ -45,7 +45,10 @@ Thanks to Martin Waldenburg. unit SynHighlighterCache; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlightercobol.pas b/components/extrasyn/SyneditHighlighters/synhighlightercobol.pas index 661adb965..c8eb217ce 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlightercobol.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlightercobol.pas @@ -36,7 +36,10 @@ located at http://SynEdit.SourceForge.net -------------------------------------------------------------------------------} unit SynHighlighterCobol; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlightercs.pas b/components/extrasyn/SyneditHighlighters/synhighlightercs.pas index def11bcb6..17fac40e9 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlightercs.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlightercs.pas @@ -48,7 +48,10 @@ Based on SynHighlighterCpp.pas } unit SynHighlighterCS; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterdml.pas b/components/extrasyn/SyneditHighlighters/synhighlighterdml.pas index 8e3cac328..b8ee01565 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterdml.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterdml.pas @@ -44,7 +44,10 @@ The SynHighlighterDml unit provides SynEdit with a Dml highlighter. } unit SynHighlighterDml; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterdot.pas b/components/extrasyn/SyneditHighlighters/synhighlighterdot.pas index ea4d3d94e..f147e34c7 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterdot.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterdot.pas @@ -43,7 +43,10 @@ The highlighter formats DOT source code ref.: http://www.research.att.com/sw/too } unit SynHighlighterDOT; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlightereiffel.pas b/components/extrasyn/SyneditHighlighters/synhighlightereiffel.pas index c504db981..93cfba098 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlightereiffel.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlightereiffel.pas @@ -42,7 +42,10 @@ The SynHighlighterEiffel unit provides SynEdit with an Eiffel highlighter. } unit SynHighlighterEiffel; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterfortran.pas b/components/extrasyn/SyneditHighlighters/synhighlighterfortran.pas index 082ea8ea5..fc3f4fb47 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterfortran.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterfortran.pas @@ -44,7 +44,10 @@ Thanks to Martin Waldenburg. } unit SynHighlighterFortran; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterfoxpro.pas b/components/extrasyn/SyneditHighlighters/synhighlighterfoxpro.pas index e84f673ab..88d919a36 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterfoxpro.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterfoxpro.pas @@ -44,7 +44,10 @@ Thanks to Martin Waldenburg. } unit SynHighlighterFoxpro; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlightergalaxy.pas b/components/extrasyn/SyneditHighlighters/synhighlightergalaxy.pas index 1d53dc359..08d311b3a 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlightergalaxy.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlightergalaxy.pas @@ -45,7 +45,10 @@ The keywords in the string list KeyWords have to be in UPPERCASE and sorted. } unit SynHighlighterGalaxy; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlightergeneral.pas b/components/extrasyn/SyneditHighlighters/synhighlightergeneral.pas index 901df5b66..2878ad16d 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlightergeneral.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlightergeneral.pas @@ -47,7 +47,10 @@ The SynHighlighterGeneral unit provides a customizable highlighter for SynEdit. unit SynHighlighterGeneral; {$ENDIF} -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlightergnuplot.pas b/components/extrasyn/SyneditHighlighters/synhighlightergnuplot.pas index 46c5b36d2..e087aed5b 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlightergnuplot.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlightergnuplot.pas @@ -51,7 +51,10 @@ The SynHighlighterGnuplot unit provides SynEdit with a highlighter for gnuplot. unit synhighlightergnuplot; {$ENDIF} -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlightergws.pas b/components/extrasyn/SyneditHighlighters/synhighlightergws.pas index 54023fe73..d7e22187d 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlightergws.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlightergws.pas @@ -37,7 +37,10 @@ unit SynHighlighterGWS; { This unit provides a syntax highlighter for GW-TEL Scripts } -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterhaskell.pas b/components/extrasyn/SyneditHighlighters/synhighlighterhaskell.pas index cd57a28c5..e3aa7c710 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterhaskell.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterhaskell.pas @@ -48,7 +48,10 @@ ashley@ashleybrown.co.uk } unit SynHighlighterHaskell; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterhp48.pas b/components/extrasyn/SyneditHighlighters/synhighlighterhp48.pas index 22fc4a7d6..10cce56f0 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterhp48.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterhp48.pas @@ -44,7 +44,10 @@ The unit SynHighlighterHP48 provides SynEdit with a HP48 assembler highlighter. } unit SynHighlighterHP48; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighteridl.pas b/components/extrasyn/SyneditHighlighters/synhighlighteridl.pas index 7ce673727..afb069f6d 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighteridl.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighteridl.pas @@ -35,7 +35,10 @@ located at http://SynEdit.SourceForge.net -------------------------------------------------------------------------------} unit SynHighlighterIDL; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterinno.pas b/components/extrasyn/SyneditHighlighters/synhighlighterinno.pas index 5d73febd6..a6bec4fdc 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterinno.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterinno.pas @@ -43,7 +43,10 @@ and http://www.wintax.nl/isx/ for My Inno Setup Extensions. } unit SynHighlighterInno; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterkix.pas b/components/extrasyn/SyneditHighlighters/synhighlighterkix.pas index f2bcef63e..e56cb0ac9 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterkix.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterkix.pas @@ -43,7 +43,10 @@ The SynHighlighterKix unit provides SynEdit with a Kix script file syntax highli } unit SynHighlighterKix; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterldraw.pas b/components/extrasyn/SyneditHighlighters/synhighlighterldraw.pas index eda0a4e0e..e061d3490 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterldraw.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterldraw.pas @@ -42,7 +42,10 @@ The SynHighlighterLDraw unit provides SynEdit with a LEGO LDraw (.ldr / .dat) hi } unit SynHighlighterLDraw; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterm3.pas b/components/extrasyn/SyneditHighlighters/synhighlighterm3.pas index 3d8d32e52..952f4a755 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterm3.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterm3.pas @@ -39,7 +39,10 @@ The SynHighlighterM3 unit provides SynEdit with a Modula-3 (.m3) highlighter. } unit SynHighlighterM3; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlightermodelica.pas b/components/extrasyn/SyneditHighlighters/synhighlightermodelica.pas index d59e85374..a8f34f719 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlightermodelica.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlightermodelica.pas @@ -34,7 +34,10 @@ Known Issues: -------------------------------------------------------------------------------} unit SynHighlighterModelica; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterprogress.pas b/components/extrasyn/SyneditHighlighters/synhighlighterprogress.pas index a789ad9e2..566f2bc18 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterprogress.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterprogress.pas @@ -45,7 +45,10 @@ highlighter is based. } unit SynHighlighterProgress; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterrc.pas b/components/extrasyn/SyneditHighlighters/synhighlighterrc.pas index 94360889a..510533083 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterrc.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterrc.pas @@ -35,7 +35,10 @@ located at http://SynEdit.SourceForge.net unit SynHighlighterRC; {$ENDIF} -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterruby.pas b/components/extrasyn/SyneditHighlighters/synhighlighterruby.pas index 241622c02..a31482008 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterruby.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterruby.pas @@ -46,9 +46,10 @@ The SynHighlighterVisualLisp unit provides SynEdit with a Ruby highlighter. unit SynHighlighterRuby; {$ENDIF} - //SynEdit.inc is the synedit.inc from laz 1.2.0 synedit package source if it has changed - //in newer version you might need to copy it again. REmeber to redclare the syn_lazarus define. -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlightersdd.pas b/components/extrasyn/SyneditHighlighters/synhighlightersdd.pas index f2305799d..c2bee8055 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlightersdd.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlightersdd.pas @@ -36,7 +36,10 @@ located at http://SynEdit.SourceForge.net unit SynHighlighterSDD; {$ENDIF} -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlightersml.pas b/components/extrasyn/SyneditHighlighters/synhighlightersml.pas index defe0789e..0d111a953 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlightersml.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlightersml.pas @@ -46,7 +46,10 @@ be disabled for backwards compatibility with older ML compilers that do not have unit SynHighlighterSml; -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterst.pas b/components/extrasyn/SyneditHighlighters/synhighlighterst.pas index cb55b6378..99f3042b6 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterst.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterst.pas @@ -40,7 +40,10 @@ Known Issues: unit SynHighlighterST; {$ENDIF} -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlightertcltk.pas b/components/extrasyn/SyneditHighlighters/synhighlightertcltk.pas index f7bf93549..3545db56e 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlightertcltk.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlightertcltk.pas @@ -46,7 +46,10 @@ The SynHighlighterTclTk unit provides SynEdit with a TCL/Tk highlighter. unit SynHighlighterTclTk; {$ENDIF} -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighterunreal.pas b/components/extrasyn/SyneditHighlighters/synhighlighterunreal.pas index f19824124..52a118468 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighterunreal.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighterunreal.pas @@ -44,7 +44,10 @@ Known Issues: unit SynHighlighterUnreal; {$ENDIF} -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlighteruri.pas b/components/extrasyn/SyneditHighlighters/synhighlighteruri.pas index e4b6fb8c9..21508e8bb 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlighteruri.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlighteruri.pas @@ -69,7 +69,10 @@ www.host.org unit SynHighlighterURI; {$ENDIF} -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlightervbscript.pas b/components/extrasyn/SyneditHighlighters/synhighlightervbscript.pas index 2be7a4a78..3d727b403 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlightervbscript.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlightervbscript.pas @@ -47,7 +47,10 @@ Thanks to Primoz Gabrijelcic and Martin Waldenburg. unit SynHighlighterVBScript; {$ENDIF} -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface diff --git a/components/extrasyn/SyneditHighlighters/synhighlightervrml97.pas b/components/extrasyn/SyneditHighlighters/synhighlightervrml97.pas index 141de9eec..205091122 100644 --- a/components/extrasyn/SyneditHighlighters/synhighlightervrml97.pas +++ b/components/extrasyn/SyneditHighlighters/synhighlightervrml97.pas @@ -48,7 +48,10 @@ The highlighter formats Vrml97/X3D source code highlighting keywords, strings, n unit SynHighlighterVrml97; {$ENDIF} -{$I synedit.inc} +// extrasyn.inc is the synedit.inc from laz 1.2.0 synedit package source, +// If it has changed in newer version you might need to copy it again. +// Remember to redclare the syn_lazarus define. +{$I extrasyn.inc} interface