summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-03-20 23:17:22 +0100
committerGeorg Brandl <georg@python.org>2011-03-20 23:17:22 +0100
commit6f44865a9277c52a5260c7f3efa7b25a4d3d419a (patch)
tree72f0768c133ae67521d9adc4c0c5e6c41c7078a5
parent1cbebc0f2477a92fbf6241b2479e094774c15df5 (diff)
downloadpygments-6f44865a9277c52a5260c7f3efa7b25a4d3d419a.tar.gz
Add acks and fix versionadded.
-rw-r--r--AUTHORS1
-rw-r--r--CHANGES1
-rw-r--r--pygments/lexers/agile.py3
-rw-r--r--pygments/lexers/other.py3
4 files changed, 7 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index 1c399949..4b85b07c 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -52,6 +52,7 @@ Other contributors, listed alphabetically, are:
* Kirk McDonald -- D lexer
* Stephen McKamey -- Duel/JBST lexer
* Lukas Meuser -- BBCode formatter, Lua lexer
+* Michael Mior -- Awk lexer
* Paulo Moura -- Logtalk lexer
* Ana Nelson -- Ragel, ANTLR, R console lexers
* Nam T. Nguyen -- Monokai style
diff --git a/CHANGES b/CHANGES
index d46e66f9..b0ae583e 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10,6 +10,7 @@ Version 1.5
- Lexers added:
+ * Awk
* Fancy (#633)
diff --git a/pygments/lexers/agile.py b/pygments/lexers/agile.py
index 6a37c193..e7438158 100644
--- a/pygments/lexers/agile.py
+++ b/pygments/lexers/agile.py
@@ -1959,6 +1959,7 @@ class IokeLexer(RegexLexer):
]
}
+
class FancyLexer(RegexLexer):
"""
Pygments Lexer For `Fancy <http://www.fancy-lang.org/>`_.
@@ -1967,7 +1968,7 @@ class FancyLexer(RegexLexer):
class-based, concurrent general-purpose programming language
running on Rubinius, the Ruby VM.
- **New in Pygments 1.5**
+ *New in Pygments 1.5.*
"""
name = 'Fancy'
filenames = ['*.fy', '*.fancypack']
diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py
index 5032f0bb..1a56f72e 100644
--- a/pygments/lexers/other.py
+++ b/pygments/lexers/other.py
@@ -2842,9 +2842,12 @@ class HybrisLexer(RegexLexer):
],
}
+
class AwkLexer(RegexLexer):
"""
For Awk scripts.
+
+ *New in Pygments 1.5.*
"""
name = 'Awk'