summaryrefslogtreecommitdiff
path: root/scheme2rst.py
diff options
context:
space:
mode:
Diffstat (limited to 'scheme2rst.py')
-rw-r--r--scheme2rst.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scheme2rst.py b/scheme2rst.py
index 5c9e2ce..9b3b524 100644
--- a/scheme2rst.py
+++ b/scheme2rst.py
@@ -17,7 +17,7 @@ try:
except ImportError:
print 'Warning: sphinx is not installed'
-identifier = r'[-A-Z\d_!\?\+\-\*/]+'
+identifier = r'[-A-Z\d_=!\?\+\-\*/]+'
BIGCOMMENT = re.compile(r'#\|(.*)\|#(.*)', re.DOTALL)
SNIPPET = re.compile(r'\n\s*;+\s*(%s)\s*\n(.*?)\n\s*;+\s*END' % identifier,
re.DOTALL)