branch : pmacs2
This commit is contained in:
moculus 2008-04-07 19:49:08 +00:00
parent 08d9a815e4
commit 4d3769233e
1 changed files with 1 additions and 3 deletions

View File

@ -223,8 +223,6 @@ class Fundamental(Handler):
self.lmargin = 0
self.rmargin = 1
def get_rmargin(self, y, x, ended=False, cont=False):
return ('', color.build('default', 'default'))
def _null_margin(self, y, x, ended=False, cont=False):
return ('', color.build('default', 'default'))
def _continuation_margin(self, y, x, ended=False, cont=False):
@ -242,6 +240,7 @@ class Fundamental(Handler):
else:
s = ' ' * lm
return (s, color.build('default', 'default', 'bold'))
get_lmargin = _line_number_margin
get_rmargin = _continuation_margin
@ -253,7 +252,6 @@ class Fundamental(Handler):
def handle_token(self, t):
'''self.handle_token(token): handles input "token"'''
self.window.active_point = None
#self.window.application.clear_error()
self.window.clear_error()
try:
act = Handler.handle_token(self, t)