From 5897f4405579d2123e5ec2d66afc6f63f1251233 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 11 Feb 2008 05:25:15 +0000 Subject: [PATCH] (Fdelete_frame): Fix stupid typo. --- src/frame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; -- 2.39.2