diff options
| author | Greg Ercolano <erco@seriss.com> | 2020-09-20 16:05:16 -0700 |
|---|---|---|
| committer | Greg Ercolano <erco@seriss.com> | 2020-11-01 12:16:23 -0800 |
| commit | d66e146a89cd92307cb404bb203a9ce46f890375 (patch) | |
| tree | e1d71466fcb75f772133e59e990db94f3e05fe45 /fluid/CodeEditor.cxx | |
| parent | 4d503899a3dec9df8380b3981f1a7259e9d6cb8c (diff) | |
Handle single quotes
Diffstat (limited to 'fluid/CodeEditor.cxx')
| -rw-r--r-- | fluid/CodeEditor.cxx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/fluid/CodeEditor.cxx b/fluid/CodeEditor.cxx index c0e91ddd4..3d7d47515 100644 --- a/fluid/CodeEditor.cxx +++ b/fluid/CodeEditor.cxx @@ -33,7 +33,8 @@ Fl_Text_Display::Style_Table_Entry CodeEditor:: { FL_BLUE, FL_COURIER, 11 }, // D - Strings { FL_DARK_RED, FL_COURIER, 11 }, // E - Directives { FL_DARK_RED, FL_COURIER_BOLD, 11 }, // F - Types - { FL_BLUE, FL_COURIER_BOLD, 11 } // G - Keywords + { FL_BLUE, FL_COURIER_BOLD, 11 }, // G - Keywords + { 220, /* med cyan */ FL_COURIER, 11 } // H - Single quote chars }; // attempt to make the fluid code editor widget honour textsize setting @@ -61,6 +62,7 @@ void CodeEditor::style_parse(const char *in_tbuff, // text buffer to par // 'E' - Directives #define, #include.. // 'F' - Types void, char.. // 'G' - Keywords if, while.. + // 'H' - Chars 'x' StyleParse sp; sp.tbuff = in_tbuff; @@ -83,8 +85,10 @@ void CodeEditor::style_parse(const char *in_tbuff, // text buffer to par if ( !sp.parse_escape() ) break; } else if ( strncmp(sp.tbuff, "//", 2)==0 ) { // Line comment? if ( !sp.parse_line_comment() ) break; - } else if ( c == '"' ) { // Start of quoted string? - if ( !sp.parse_quoted_string() ) break; + } else if ( c == '"' ) { // Start of double quoted string? + if ( !sp.parse_quoted_string('"', 'D') ) break; + } else if ( c == '\'' ) { // Start of single quoted string? + if ( !sp.parse_quoted_string('\'', 'H') ) break; } else if ( c == '#' && sp.lwhite ) { // Start of '#' directive? if ( !sp.parse_directive() ) break; } else if ( !sp.last && (islower(c) || c == '_') ) { // Possible C/C++ keyword? |
