branch : pmacs2
This commit is contained in:
moculus 2008-10-06 19:04:57 +00:00
parent 5abba77067
commit c1529c2320
1 changed files with 2 additions and 1 deletions

View File

@ -180,7 +180,8 @@ class PerlTabber2(StackTabber2):
close_tokens = {'delimiter': {'}': '{', ')': '(', ']': '['}}
end_at_eof = False
end_at_tokens = {'delimiter': {';': 1}}
nocontinue_tokens = {'delimiter': {';': 1, ',': 1}}
nocontinue_tokens = {'delimiter': {';': 1, ',': 1},
'heredoc.end': 1, 'evaldoc.end': 1, 'pod.end': 1}
start_free_tokens = {'string.start': 1, 'pod.start': 1, 'heredoc.start': 1,
'evaldoc.start': 1}
end_free_tokens = {'string.end': 1, 'pod.end': 1, 'heredoc.end': 1,