--HG--
branch : pmacs2
This commit is contained in:
Erik Osheim 2009-08-26 10:08:24 -04:00
commit abc57cfd80
2 changed files with 3 additions and 2 deletions

View File

@ -48,7 +48,7 @@ EvalGrammar.rules = [
PatternRule(r'variable', r"\${(?:" + word + "|\?\$)}"),
PatternRule(r"variable", r"\$" + word),
PatternRule(r'variable', r"\$(?=\()"),
PatternRule(r'data', r'[^\\`$]+'),
PatternRule(r'data', r'[^\\`$\'"]+'),
]
NevalGrammar.rules = [

3
tab.py
View File

@ -412,7 +412,8 @@ class StackTabber2(Tabber):
self.stack.pop()
if t.string in self.open_scope_tokens.get(t.name, set()):
#self._pop_while('continue', 'control')
self._pop_while('continue')
#self._pop_while('continue')
self._pop('continue', 'control')
if i == 0 and t.string in self.open_scope_tokens.get(t.name, set()):
self._save_curr_level()