aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorPaul Eggert2011-04-06 19:53:19 -0700
committerPaul Eggert2011-04-06 19:53:19 -0700
commitb189fa667ed7ac7b17f9665cd8a0c26316b3c521 (patch)
tree0e6fae139f899cc8e1b2cebedc0171eab437a580 /src/eval.c
parentbff87ef0301f6039ffcf1f2eb5503fa262a32285 (diff)
downloademacs-b189fa667ed7ac7b17f9665cd8a0c26316b3c521.tar.gz
emacs-b189fa667ed7ac7b17f9665cd8a0c26316b3c521.zip
* eval.c (internal_lisp_condition_case): Don't pass spurious arg.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index 93da7799bec..8b029967e7a 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1401,7 +1401,7 @@ internal_lisp_condition_case (volatile Lisp_Object var, Lisp_Object bodyform,
1401 || (CONSP (tem) 1401 || (CONSP (tem)
1402 && (SYMBOLP (XCAR (tem)) 1402 && (SYMBOLP (XCAR (tem))
1403 || CONSP (XCAR (tem)))))) 1403 || CONSP (XCAR (tem))))))
1404 error ("Invalid condition handler", tem); 1404 error ("Invalid condition handler");
1405 } 1405 }
1406 1406
1407 c.tag = Qnil; 1407 c.tag = Qnil;