Merge pull request #990 from digitalvectorz/master

non-critical macro patch: fixed what seemed to be a typo...'emtpy' -?…
This commit is contained in:
Paul‮etnomailgaT‭ 2015-11-20 14:23:52 -05:00
commit 82fd074f5e

View File

@ -123,7 +123,7 @@ def load_macros(module_name):
_import(module)
def make_emtpy_fn_copy(fn):
def make_empty_fn_copy(fn):
argspec = getargspec(fn)
formatted_args = formatargspec(*argspec)
fn_str = 'lambda {}: None'.format(
@ -167,7 +167,7 @@ def macroexpand_1(tree, module_name):
m = _hy_macros[None].get(fn)
if m is not None:
try:
m_copy = make_emtpy_fn_copy(m)
m_copy = make_empty_fn_copy(m)
m_copy(*ntree[1:])
except TypeError as e:
msg = "expanding `" + str(tree[0]) + "': "