reinstated accidentally deleted regex.


git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@78 4cde692c-a291-49d1-8350-778aa11640f8
diff --git a/Lib/fontTools/ttLib/tables/ttProgram.py b/Lib/fontTools/ttLib/tables/ttProgram.py
index 917c5e6..37643ab 100644
--- a/Lib/fontTools/ttLib/tables/ttProgram.py
+++ b/Lib/fontTools/ttLib/tables/ttProgram.py
@@ -184,6 +184,9 @@
 _tokenRE = re.compile(_token)
 _whiteRE = re.compile(r"\s*")
 
+_pushCountPat = re.compile(r"[A-Z][A-Z0-9]*\s*\[.*?\]\s*/\* ([0-9]*).*?\*/")
+
+
 def _skipWhite(data, pos, _whiteRE=_whiteRE):
 	m = _whiteRE.match(data, pos)
 	newPos = m.regs[0][1]