Add Alt-slash to Unix keydefs (I somehow need it on RH 6.2).
Get rid of assignment to unused self.text.wordlist.
diff --git a/Tools/idle/AutoExpand.py b/Tools/idle/AutoExpand.py
index 0d57be4..09f34b3 100644
--- a/Tools/idle/AutoExpand.py
+++ b/Tools/idle/AutoExpand.py
@@ -12,7 +12,7 @@
     }
 
     unix_keydefs = {
-        '<<expand-word>>': ['<Meta-slash>'],
+        '<<expand-word>>': ['<Meta-slash>', '<Alt-slash>'],
     }
 
     menudefs = [
@@ -25,7 +25,6 @@
 
     def __init__(self, editwin):
         self.text = editwin.text
-        self.text.wordlist = None # XXX what is this?
         self.state = None
 
     def expand_word_event(self, event):