changeset 91761:a21ac0ad90f7

(Fdelete_frame): Fix stupid typo.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 11 Feb 2008 05:25:15 +0000
parents d92379babb32
children 5a41bb37f0ee
files src/frame.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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];