fixed ignore_suffix bug

--HG--
branch : pmacs2
This commit is contained in:
Erik Osheim 2009-05-27 15:28:04 -04:00
parent 3d9936b8a7
commit 540b1d75c4
2 changed files with 2 additions and 2 deletions

View File

@ -199,7 +199,7 @@ class C(Fundamental):
'c.make-rel-dir': True, 'c.make-rel-dir': True,
} }
lconfig = { lconfig = {
'ignore-suffix': ['.o'], 'ignore_suffix': ['.o'],
} }
_bindings = { _bindings = {

View File

@ -582,7 +582,7 @@ class Python(mode.Fundamental):
'python.lib': '.', 'python.lib': '.',
} }
lconfig = { lconfig = {
'ignore-suffix': ['.pyc', '.pyo'], 'ignore_suffix': ['.pyc', '.pyo'],
} }
actions = [PythonInitNames, PythonListNames, PythonGotoName, PythonHelp, actions = [PythonInitNames, PythonListNames, PythonGotoName, PythonHelp,
PythonGotoFunction, PythonGotoClass, PythonCheckSyntax, PythonGotoFunction, PythonGotoClass, PythonCheckSyntax,