From 664d406e9ed127e79a662e2dda3863c5b3bdb164 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Mon, 23 Mar 2015 04:18:11 +0100 Subject: [PATCH] improvement, blanks & symbols disable current identifier HL --- src/ce_d2syn.pas | 1 - src/ce_txtsyn.pas | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/ce_d2syn.pas b/src/ce_d2syn.pas index 351328ae..2de46896 100644 --- a/src/ce_d2syn.pas +++ b/src/ce_d2syn.pas @@ -434,7 +434,6 @@ end; procedure TSynD2Syn.setCurrIdent(const aValue: string); begin - if aValue = '' then exit; if fCurrIdent = aValue then Exit; fCurrIdent := aValue; doChanged; diff --git a/src/ce_txtsyn.pas b/src/ce_txtsyn.pas index 34dbb151..53fdc3ce 100644 --- a/src/ce_txtsyn.pas +++ b/src/ce_txtsyn.pas @@ -100,8 +100,6 @@ end; procedure TSynTxtSyn.setCurrIdent(const aValue: string); begin - if aValue = '' then - exit; if fCurrIdent = aValue then Exit; fCurrIdent := aValue;