aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexAsm.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-02-17 11:18:03 +0000
committernyamatongwe <devnull@localhost>2003-02-17 11:18:03 +0000
commit7adcd85e2cdaabba181c1e535348807882f47eba (patch)
tree9afc83510a6c12a0531c09bbe9a6bff6c3a05168 /src/LexAsm.cxx
parenta7e1847a4b0e067949d8f67acab39cf061f90190 (diff)
downloadscintilla-mirror-7adcd85e2cdaabba181c1e535348807882f47eba.tar.gz
Upgraded keyword list descriptions from Brian Quinlan.
Diffstat (limited to 'src/LexAsm.cxx')
-rw-r--r--src/LexAsm.cxx11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/LexAsm.cxx b/src/LexAsm.cxx
index 0fc6f27ad..1eecf9b31 100644
--- a/src/LexAsm.cxx
+++ b/src/LexAsm.cxx
@@ -129,5 +129,14 @@ static void ColouriseAsmDoc(unsigned int startPos, int length, int initStyle, Wo
sc.Complete();
}
-LexerModule lmAsm(SCLEX_ASM, ColouriseAsmDoc, "asm");
+static const char * const asmWordListDesc[] = {
+ "CPU instructions",
+ "FPU instructions",
+ "Registers",
+ "Directives",
+ "Directive operands",
+ 0
+};
+
+LexerModule lmAsm(SCLEX_ASM, ColouriseAsmDoc, "asm", 0, asmWordListDesc);