continuation error

--HG--
branch : pmacs2
This commit is contained in:
moculus 2008-10-04 14:40:59 +00:00
parent ac10dc9e98
commit cbe91b0a98
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ class CTabber2(tab.StackTabber2):
return t.name == 'spaces' return t.name == 'spaces'
def _is_ignored(self, t): def _is_ignored(self, t):
if t.name in ('spaces', 'eol', 'comment'): return True if t.name in ('spaces', 'eol', 'comment'): return True
elif t.fqname() in ('comment.start', 'comment.null', 'comment.end'): return True elif t.fqname() in ('comment.start', 'comment.data', 'comment.null', 'comment.end'): return True
else: return False else: return False
class CCheckSyntax(method.shell.Exec): class CCheckSyntax(method.shell.Exec):