c indentation bug

--HG--
branch : pmacs2
This commit is contained in:
Erik Osheim 2009-08-22 22:07:59 -04:00
parent ac13c6020e
commit e2d0b8d13b
1 changed files with 2 additions and 1 deletions

3
tab.py
View File

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