# HG changeset patch # User Stefan Monnier # Date 1202707515 0 # Node ID a21ac0ad90f75f68acca4fbb0b7ebaa91a930f3f # Parent d92379babb3211e6d33810a2b7927a8811591768 (Fdelete_frame): Fix stupid typo. diff -r d92379babb32 -r a21ac0ad90f7 src/frame.c --- a/src/frame.c Mon Feb 11 04:11:00 2008 +0000 +++ b/src/frame.c Mon Feb 11 05:25:15 2008 +0000 @@ -1410,7 +1410,7 @@ 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];