diff options
| author | mitchell <unknown> | 2020-06-10 17:07:30 -0400 |
|---|---|---|
| committer | mitchell <unknown> | 2020-06-10 17:07:30 -0400 |
| commit | 6a50bd506225071330ac0fe39e1247e7dc775e34 (patch) | |
| tree | a58ca86bb05ae4d0f6be8bb8f9c4f27e2880f2d1 | |
| parent | 32fdfb4248417b52716e0d9954f6fafeb5ae84c3 (diff) | |
| download | scintilla-mirror-6a50bd506225071330ac0fe39e1247e7dc775e34.tar.gz | |
Revert previous commit.
| -rw-r--r-- | lexers/LexLPeg.cxx | 4 | ||||
| -rw-r--r-- | lexlua/lexer.lua | 4 |
2 files changed, 3 insertions, 5 deletions
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) diff --git a/lexlua/lexer.lua b/lexlua/lexer.lua index 16b1b94c7..6f88d240f 100644 --- a/lexlua/lexer.lua +++ b/lexlua/lexer.lua @@ -335,7 +335,7 @@ local M = {} -- [not]eolfilled | Does the background color extend to the end of the line? -- case:_char_ | The case of the font ('u': upper, 'l': lower, 'm': normal). -- [not]visible | Whether or not the text is visible. --- [not]changable | Whether the text is changable or read-only. +-- [not]changeable| Whether the text is changeable or read-only. -- -- Specify font colors in either "#RRGGBB" format, "0xBBGGRR" format, or the -- decimal equivalent of the latter. As with token names, LPeg patterns, and @@ -1051,7 +1051,7 @@ end -- * `case:char`: Font case ('u' for uppercase, 'l' for lowercase, and 'm' for -- mixed case). -- * `visible` or `notvisible`: Whether or not the text is visible. --- * `changable` or `notchangable`: Whether or not the text is changable or +-- * `changeable` or `notchangeable`: Whether or not the text is changeable or -- read-only. -- -- Property settings may also contain "$(property.name)" expansions for |
