summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-01-09 17:29:48 +0100
committerGeorg Brandl <georg@python.org>2014-01-09 17:29:48 +0100
commitf705795d9bae48d496ab2df3ff916a06c3c192d2 (patch)
treed0f57909a7fc57a55775cd821536c9724ca7275a
parent5e18204f68d92d3926ea43b85bccc49dc3ab57d1 (diff)
downloadpygments-f705795d9bae48d496ab2df3ff916a06c3c192d2.tar.gz
chapel: changelog and attribution
-rw-r--r--AUTHORS1
-rw-r--r--CHANGES1
-rw-r--r--pygments/lexers/compiled.py2
3 files changed, 4 insertions, 0 deletions
diff --git a/AUTHORS b/AUTHORS
index 16f60eec..997272cc 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -141,6 +141,7 @@ Other contributors, listed alphabetically, are:
* Bob Tolbert -- Hy lexer
* Erick Tryzelaar -- Felix lexer
* Alexander Udalov -- Kotlin lexer improvements
+* Thomas Van Doren -- Chapel lexer
* Daniele Varrazzo -- PostgreSQL lexers
* Abe Voelker -- OpenEdge ABL lexer
* Pepijn de Vos -- HTML formatter CTags support
diff --git a/CHANGES b/CHANGES
index 325f4a7d..ad837704 100644
--- a/CHANGES
+++ b/CHANGES
@@ -27,6 +27,7 @@ Version 1.7
* Nix (PR#267)
* Pike (PR#237)
* Hy (PR#238)
+ * Chapel (PR#256)
- Pygments will now recognize "vim" modelines when guessing the lexer for
a file based on content (PR#118).
diff --git a/pygments/lexers/compiled.py b/pygments/lexers/compiled.py
index 51656129..68f67632 100644
--- a/pygments/lexers/compiled.py
+++ b/pygments/lexers/compiled.py
@@ -3768,6 +3768,8 @@ class LogosLexer(ObjectiveCppLexer):
class ChapelLexer(RegexLexer):
"""
For `Chapel <http://chapel.cray.com/>`_ source.
+
+ *New in Pygments 1.7.*
"""
name = 'Chapel'
filenames = ['*.chpl']