summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcflip <cflip@cflip.net>2023-01-18 15:40:13 -0700
committercflip <cflip@cflip.net>2023-01-18 15:45:25 -0700
commitb9ee44b8499d8e88d0566681a5218c8656ca6f58 (patch)
treee0d4e24dbdfe17ca1490f9f77a0f46aa850d89fb
parent40e9a891fd2d09d56465353be379abc3f127e99d (diff)
Add 'const' to the list of syntax words
-rw-r--r--syntax.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax.c b/syntax.c
index 9092f3d..1d93f8e 100644
--- a/syntax.c
+++ b/syntax.c
@@ -13,7 +13,7 @@ char* c_highlight_keywords[] = {
"#include", "#define", "#ifdef", "#ifndef",
"int|", "long|", "double|", "float|", "char|", "unsigned|", "signed|",
- "void|", NULL
+ "void|", "const|", NULL
};
struct editor_syntax highlight_database[] = {