branch : pmacs2
This commit is contained in:
moculus 2008-03-18 15:03:11 +00:00
parent 3cf80e026b
commit 6d5f819a30
1 changed files with 2 additions and 1 deletions

View File

@ -168,7 +168,8 @@ class Application(object):
# see if the user has requested that we go to a particular line # see if the user has requested that we go to a particular line
if jump_to_line: if jump_to_line:
w = self.bufferlist.slots[0].window w = self.bufferlist.slots[0].window
method.GotoLine().execute(w, lineno=jump_to_line) self.methods['goto-line'].execute(w, lineno=jump_to_line)
#method.GotoLine().execute(w, lineno=jump_to_line)
# initialize our kill ring and last action # initialize our kill ring and last action
self.kill_ring = [] self.kill_ring = []