branch : pmacs2
This commit is contained in:
moculus 2008-11-09 00:06:22 +00:00
parent c095930ba3
commit 034bfaa052
1 changed files with 4 additions and 2 deletions

View File

@ -114,8 +114,10 @@ class Application(object):
# create all the insert methods for the character ranges we like
for c in string.letters + string.digits + string.punctuation:
self.methods[obj.name] = method.InsertString(c)
self.methods[obj.name] = method.OverwriteChar(c)
obj = method.InsertString(c)
self.methods[obj.name] = obj
obj = method.OverwriteChar(c)
self.methods[obj.name] = obj
# buffer list stuff
height = self.y - 1