Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
pyscripter committed Jul 26, 2023
1 parent bf069b0 commit d0759f5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Source/Highlighters/SynHighlighterPHP.pas
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-------------------------------------------------------------------------------
{-------------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
Expand All @@ -13,7 +13,7 @@
mwEdit component suite by Martin Waldenburg and other developers, the Initial
Author of this file is Willo van der Merwe.
"Heredoc" syntax highlighting implementation by Marko Njezic.
Unicode translation by Maël Hörz.
Unicode translation by Maël Hörz.
All Rights Reserved.
Contributors to the SynEdit and mwEdit projects are listed in the
Expand Down Expand Up @@ -1229,7 +1229,7 @@ function TSynPHPSyn.IsWordBreakChar(AChar: WideChar): Boolean;
begin
case AChar of
#0..#32, '.', ',', ';', ':', '"', '''', '+', '`', '-', '^', '!', '?', '&',
'@', '§', '%', '#', '~', '[', ']', '(', ')', '{', '}', '<', '>',
'@', '§', '%', '#', '~', '[', ']', '(', ')', '{', '}', '<', '>',
'=', '*', '/', '\', '|':
Result := True;
else
Expand Down
6 changes: 3 additions & 3 deletions Source/Highlighters/SynHighlighterPerl.pas
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-------------------------------------------------------------------------------
{-------------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
Expand All @@ -12,7 +12,7 @@
The Original Code is based on the DcjSynPerl.pas file from the
mwEdit component suite by Martin Waldenburg and other developers, the Initial
Author of this file is Michael Trier.
Unicode translation by Maël Hörz.
Unicode translation by Maël Hörz.
All Rights Reserved.
Contributors to the SynEdit and mwEdit projects are listed in the
Expand Down Expand Up @@ -1299,7 +1299,7 @@ function TSynPerlSyn.IsWordBreakChar(AChar: WideChar): Boolean;
begin
case AChar of
#0..#32, '.', ',', ';', ':', '"', '''', '+', '`', '-', '^', '!', '?', '&',
'§', '#', '~', '[', ']', '(', ')', '{', '}', '<', '>',
'§', '#', '~', '[', ']', '(', ')', '{', '}', '<', '>',
'=', '*', '/', '\', '|':
Result := True;
else
Expand Down

0 comments on commit d0759f5

Please sign in to comment.