aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/eval.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index a9bad2491fa..caeb791c19b 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1988,7 +1988,8 @@ it defines a macro. */)
1988 Lisp_Object fun = Findirect_function (funname, Qnil); 1988 Lisp_Object fun = Findirect_function (funname, Qnil);
1989 1989
1990 if (!NILP (Fequal (fun, fundef))) 1990 if (!NILP (Fequal (fun, fundef)))
1991 error ("Autoloading failed to define function %s", 1991 error ("Autoloading file %s failed to define function %s",
1992 SDATA (Fcar (Fcar (Vload_history))),
1992 SDATA (SYMBOL_NAME (funname))); 1993 SDATA (SYMBOL_NAME (funname)));
1993 else 1994 else
1994 return fun; 1995 return fun;