diff options
| author | Matthäus G. Chajdas <dev@anteru.net> | 2021-06-20 11:42:04 +0200 |
|---|---|---|
| committer | Matthäus G. Chajdas <dev@anteru.net> | 2021-06-20 11:42:04 +0200 |
| commit | a537d5e9663e888706df75c40826be3aed177959 (patch) | |
| tree | b24b0d946bd3cf5977cc3e1faf7184cb01e072a0 /tests/examplefiles/ragel-cpp/ragel-cpp_snippet.output | |
| parent | fea1fbc0576bb9d6d1dc84ac8cc3825e0a4e5232 (diff) | |
| download | pygments-git-a537d5e9663e888706df75c40826be3aed177959.tar.gz | |
Use the correct whitespace token for the C family.
The CFamilyLexer was matching whitespace as Text instead of Whitespace.
Diffstat (limited to 'tests/examplefiles/ragel-cpp/ragel-cpp_snippet.output')
| -rw-r--r-- | tests/examplefiles/ragel-cpp/ragel-cpp_snippet.output | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/examplefiles/ragel-cpp/ragel-cpp_snippet.output b/tests/examplefiles/ragel-cpp/ragel-cpp_snippet.output index 6e932f4e..49c1a888 100644 --- a/tests/examplefiles/ragel-cpp/ragel-cpp_snippet.output +++ b/tests/examplefiles/ragel-cpp/ragel-cpp_snippet.output @@ -1,4 +1,4 @@ -'\t' Text +'\t' Text.Whitespace '%%' Punctuation ' ' Text.Whitespace 'write' Keyword @@ -7,6 +7,6 @@ ';' Punctuation '\n' Text -'\t' Text +'\t' Text.Whitespace '/* Read in a block. */' Comment.Multiline -'\n' Text +'\n' Text.Whitespace |
