From 6a50bd506225071330ac0fe39e1247e7dc775e34 Mon Sep 17 00:00:00 2001 From: mitchell Date: Wed, 10 Jun 2020 17:07:30 -0400 Subject: Revert previous commit. --- lexers/LexLPeg.cxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'lexers') diff --git a/lexers/LexLPeg.cxx b/lexers/LexLPeg.cxx index 140f5c202..bf5b60774 100644 --- a/lexers/LexLPeg.cxx +++ b/lexers/LexLPeg.cxx @@ -368,9 +368,7 @@ class LexerLPeg : public DefaultLexer { SS(sci, SCI_STYLESETCASE, num, SC_CASE_LOWER); } else if (strcmp(key, "visible") == 0 || strcmp(key, "notvisible") == 0) SS(sci, SCI_STYLESETVISIBLE, num, *key == 'v'); - else if (strcmp(key, "changable") == 0 || - strcmp(key, "notchangable") == 0 || - strcmp(key, "changeable") == 0 || + else if (strcmp(key, "changeable") == 0 || strcmp(key, "notchangeable") == 0) SS(sci, SCI_STYLESETCHANGEABLE, num, *key == 'c'); else if (strcmp(key, "hotspot") == 0 || strcmp(key, "nothotspot") == 0) -- cgit v1.2.3