summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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']