diff options
author | gbrandl <devnull@localhost> | 2009-09-19 11:03:24 +0200 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2009-09-19 11:03:24 +0200 |
commit | 132ce75233b51ab0674478cefaa8e73f1a344ad7 (patch) | |
tree | ff2e60281a9f576db0ac96a3cfe6ec8ad3747859 | |
parent | de8d3e42c9cef6fcd7f61e94db46e61b4e51afb7 (diff) | |
download | pygments-132ce75233b51ab0674478cefaa8e73f1a344ad7.tar.gz |
Minor cleanups.
-rw-r--r-- | CHANGES | 8 | ||||
-rw-r--r-- | pygments/lexers/compiled.py | 3 | ||||
-rw-r--r-- | pygments/lexers/text.py | 1 |
3 files changed, 7 insertions, 5 deletions
@@ -5,7 +5,7 @@ Issue numbers refer to the tracker at http://dev.pocoo.org/projects/pygments/. Version 1.2 ----------- -(codename ???, released ???) +(codename not selected, to be released in 2009) - Lexers added: @@ -13,12 +13,12 @@ Version 1.2 * OOC - Fixed the HtmlFormatter's handling of noclasses=True to not output any - classes. + classes (#427). - Fixed the PythonTracebackLexer to handle non-traceback data in header or - trailer, and support more partial tracebacks that start on line 2. + trailer, and support more partial tracebacks that start on line 2 (#437). -- Fixed the CLexer to not highlight ternary statements as labels +- Fixed the CLexer to not highlight ternary statements as labels. Version 1.1.1 diff --git a/pygments/lexers/compiled.py b/pygments/lexers/compiled.py index a2c56b39..c0cbd1f0 100644 --- a/pygments/lexers/compiled.py +++ b/pygments/lexers/compiled.py @@ -1662,11 +1662,12 @@ class ValaLexer(RegexLexer): ], } + class OocLexer(RegexLexer): """ For `Ooc`<http://ooc-lang.org/>_ source code - *New in Pygments 1.1.2.* + *New in Pygments 1.2.* """ name = 'Ooc' aliases = ['ooc'] diff --git a/pygments/lexers/text.py b/pygments/lexers/text.py index 7a35c991..0d609311 100644 --- a/pygments/lexers/text.py +++ b/pygments/lexers/text.py @@ -1506,6 +1506,7 @@ class NginxConfLexer(RegexLexer): ], } + class CMakeLexer(RegexLexer): """ Lexer for `CMake <http://cmake.org/Wiki/CMake>`_ files. |