summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--MANIFEST.in1
-rw-r--r--pygments/lexers/compiled.py2
3 files changed, 3 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 36cc652c..2743c8d5 100644
--- a/CHANGES
+++ b/CHANGES
@@ -5,7 +5,7 @@ Version 0.7.1
-------------
(released Feb 15, 2007)
-- Fixed two little highlighting bugs in the Python, Scheme and Apache
+- Fixed little highlighting bugs in the Python, Java, Scheme and Apache
Config lexers.
- Updated the included manpage.
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 00000000..69083cd7
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1 @@
+include docs/build/*.html
diff --git a/pygments/lexers/compiled.py b/pygments/lexers/compiled.py
index 24a3e68b..6f35ac33 100644
--- a/pygments/lexers/compiled.py
+++ b/pygments/lexers/compiled.py
@@ -737,7 +737,7 @@ class JavaLexer(RegexLexer):
],
'class': [
(r'[a-zA-Z_][a-zA-Z0-9_]*', Name.Class, '#pop'),
- (r'', Text, '#pop'),
+ (r'', Text, '#pop'), # not really a class definition
]
}