]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fdelete_frame): Fix stupid typo.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 11 Feb 2008 05:25:15 +0000 (05:25 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 11 Feb 2008 05:25:15 +0000 (05:25 +0000)
src/frame.c

index 3328b307cbfbc444ea9ad56c6ba77b2e893098c4..2ca30eb5c42ec01f429bb2909d843613368520f0 100644 (file)
@@ -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];