summaryrefslogtreecommitdiff
path: root/scheme2rst.py
diff options
context:
space:
mode:
authormichele.simionato <devnull@localhost>2009-06-17 05:47:44 +0000
committermichele.simionato <devnull@localhost>2009-06-17 05:47:44 +0000
commitdb02e3d038bb6978307a96fb43fe602fc17f3612 (patch)
treed5d1dd1e481f178e65eb9ad5134e97377acc566e /scheme2rst.py
parent1edb00ff4c434771ce93976a2b4497f94179503a (diff)
downloadmicheles-db02e3d038bb6978307a96fb43fe602fc17f3612.tar.gz
Committed scheme27 and various improvements
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)