From: Stefan Monnier Date: Mon, 11 Feb 2008 05:25:15 +0000 (+0000) Subject: (Fdelete_frame): Fix stupid typo. X-Git-Tag: emacs-pretest-23.0.90~8011 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5897f4405579d2123e5ec2d66afc6f63f1251233;p=emacs.git (Fdelete_frame): Fix stupid typo. --- diff --git a/src/frame.c b/src/frame.c index 3328b307cbf..2ca30eb5c42 100644 --- a/src/frame.c +++ b/src/frame.c @@ -1410,7 +1410,7 @@ But FORCE inhibits this too. */) unless FORCE is `noelisp' or frame is a tooltip. FORCE is set to `noelisp' when handling a disconnect from the terminal, so we don't dare call Lisp code. */ - if (!NILP (Vrun_hooks) && EQ (force, Qnoelisp) + if (!NILP (Vrun_hooks) && !EQ (force, Qnoelisp) && NILP (Fframe_parameter (frame, intern ("tooltip")))) { Lisp_Object args[2];