diff options
author | cflip <cflip@cflip.net> | 2023-01-18 15:40:13 -0700 |
---|---|---|
committer | cflip <cflip@cflip.net> | 2023-01-18 15:45:25 -0700 |
commit | b9ee44b8499d8e88d0566681a5218c8656ca6f58 (patch) | |
tree | e0d4e24dbdfe17ca1490f9f77a0f46aa850d89fb | |
parent | 40e9a891fd2d09d56465353be379abc3f127e99d (diff) |
Add 'const' to the list of syntax words
-rw-r--r-- | syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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[] = { |