summaryrefslogtreecommitdiffstats
path: root/doc/other/Lexer.txt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-04-04 13:24:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-04 13:59:21 +0900
commit3f2dc73d5a565121db00f4a0f050a48910b51623 (patch)
tree3a2f1b4b88fc316e2c3d87b5e83058cb346b2852 /doc/other/Lexer.txt
parent3c23eba2e71e6aebeb7ff5091fc69d050170e1d1 (diff)
downloadtqscintilla-3f2dc73d5a565121db00f4a0f050a48910b51623.tar.gz
tqscintilla-3f2dc73d5a565121db00f4a0f050a48910b51623.zip
Replace TRUE/FALSE with boolean values true/falseHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/other/Lexer.txt')
-rw-r--r--doc/other/Lexer.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/other/Lexer.txt b/doc/other/Lexer.txt
index 9d4ab50..3752994 100644
--- a/doc/other/Lexer.txt
+++ b/doc/other/Lexer.txt
@@ -129,7 +129,7 @@ using an encoding such as Shift-JIS. In these encodings, extended
Lead bytes are rarely of any lexical significance, normally only being
allowed within strings and comments. In such contexts, lexers should
-ignore ch if styler.IsLeadByte(ch) returns TRUE.
+ignore ch if styler.IsLeadByte(ch) returns true.
Note: UTF-8 is simpler than Shift-JIS, so no special handling is
applied for it. All UTF-8 extended characters are >= 128 and none are
@@ -149,7 +149,7 @@ During initialization, lexers that support folding set
bool fold = styler.GetPropertyInt("fold");
-If folding is enabled in the editor, fold will be TRUE and the lexer
+If folding is enabled in the editor, fold will be true and the lexer
should call:
styler.SetLevel(line, level);