diff options
-rw-r--r-- | control | 2 | ||||
-rw-r--r-- | syntax.c | 5 | ||||
-rw-r--r-- | ted.h | 2 |
3 files changed, 6 insertions, 3 deletions
@@ -1,5 +1,5 @@ Package: ted -Version: 2.1 +Version: 2.1r1 Section: text Priority: optional Architecture: amd64 @@ -1937,6 +1937,9 @@ void syntax_highlight(SyntaxState *state, Language lang, const char32_t *line, u static void syntax_highlight_c(SyntaxState *state, const char32_t *line, u32 line_len, SyntaxCharType *char_types) { syntax_highlight_c_cpp(state, line, line_len, char_types, LANG_C); } +static void syntax_highlight_glsl(SyntaxState *state, const char32_t *line, u32 line_len, SyntaxCharType *char_types) { + syntax_highlight_c_cpp(state, line, line_len, char_types, LANG_GLSL); +} static void syntax_highlight_cpp(SyntaxState *state, const char32_t *line, u32 line_len, SyntaxCharType *char_types) { syntax_highlight_c_cpp(state, line, line_len, char_types, LANG_CPP); } @@ -2066,7 +2069,7 @@ void syntax_register_builtin_languages(void) { .name = "GLSL", // not specified as of LSP 3.17, but this seems like the natural choice .lsp_identifier = "glsl", - .highlighter = syntax_highlight_html, + .highlighter = syntax_highlight_glsl, }, { .id = LANG_CSS, @@ -28,7 +28,7 @@ extern "C" { #include "sdl-inc.h" /// Version number -#define TED_VERSION "2.1" +#define TED_VERSION "2.1r1" /// Version string #define TED_VERSION_FULL "ted v. " TED_VERSION /// Maximum path size ted handles. |