From: Paul Eggert Date: Thu, 7 Apr 2011 02:53:19 +0000 (-0700) Subject: * eval.c (internal_lisp_condition_case): Don't pass spurious arg. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~356^2~24 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b189fa667ed7ac7b17f9665cd8a0c26316b3c521;p=emacs.git * eval.c (internal_lisp_condition_case): Don't pass spurious arg. --- diff --git a/src/ChangeLog b/src/ChangeLog index d31710bcbca..6f2509429d2 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2011-04-07 Paul Eggert + * eval.c (internal_lisp_condition_case): Don't pass spurious arg. + * keyboard.c (access_keymap_keyremap): Print func name, not garbage. 2011-04-06 Paul Eggert 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, || (CONSP (tem) && (SYMBOLP (XCAR (tem)) || CONSP (XCAR (tem)))))) - error ("Invalid condition handler", tem); + error ("Invalid condition handler"); } c.tag = Qnil;