Fixed bug with alt gr inserting wrong character

This commit is contained in:
Jorgen Stenarson
2008-06-27 19:27:55 +02:00
parent ddeaa854dd
commit cd891ef5ea
3 changed files with 72 additions and 76 deletions
-5
View File
@@ -490,7 +490,6 @@ class Readline(BaseReadline):
event = c.getkeypress()
except KeyboardInterrupt:
event=self.handle_ctrl_c()
result=self.mode.process_keyevent(event.keyinfo)
self._update_line()
return result
@@ -529,10 +528,6 @@ class Readline(BaseReadline):
# create a Readline object to contain the state
rl = Readline()