summaryrefslogtreecommitdiff
path: root/editors/lazarus/files/patch-components-synedit_synedit.pp
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2018-01-30 22:11:13 +0000
committerAntoine Brodin <antoine@FreeBSD.org>2018-01-30 22:11:13 +0000
commita78ac4eb9990a0c44bf11bdb522cbe7a3bf3ad45 (patch)
tree8f9016d16db947e0cef35ace15f5a66fd43323f0 /editors/lazarus/files/patch-components-synedit_synedit.pp
parentnet/rsync-bpc: Update to 3.0.9.12 (diff)
Revert recent fpc changes, they were obviously untested
With hat: portmgr
Diffstat (limited to 'editors/lazarus/files/patch-components-synedit_synedit.pp')
-rw-r--r--editors/lazarus/files/patch-components-synedit_synedit.pp20
1 files changed, 0 insertions, 20 deletions
diff --git a/editors/lazarus/files/patch-components-synedit_synedit.pp b/editors/lazarus/files/patch-components-synedit_synedit.pp
deleted file mode 100644
index 92a6300235d4..000000000000
--- a/editors/lazarus/files/patch-components-synedit_synedit.pp
+++ /dev/null
@@ -1,20 +0,0 @@
---- components/synedit/synedit.pp 2018-01-30 13:41:54.904942000 -0500
-+++ components/synedit/synedit.pp 2018-01-30 13:40:23.811860000 -0500
-@@ -8945,7 +8945,7 @@
- while not Highlighter.GetEol do begin
- Start := Highlighter.GetTokenPos + 1;
- Token := Highlighter.GetToken;
-- if (PosX >= Start) and (PosX <= Start + Length(Token)) then begin
-+ if (PosX >= Start) and (PosX < Start + Length(Token)) then begin
- Attri := Highlighter.GetTokenAttribute;
- TokenType := Highlighter.GetTokenKind;
- exit(True);
-@@ -8990,7 +8990,7 @@
- //TokenType := Highlighter.GetTokenKind;
- Attri := Highlighter.GetTokenAttribute;
- //DebugLn([' TCustomSynEdit.CaretAtIdentOrString: Start=', Start, ', Token=', Token]);
-- if (PosX >= Start) and (PosX <= Start + Length(Token)) then
-+ if (PosX >= Start) and (PosX < Start + Length(Token)) then
- begin
- AtIdent := Attri = Highlighter.IdentifierAttribute;
- NearString := (Attri = Highlighter.StringAttribute)