comparison src/frame.c @ 91761:a21ac0ad90f7

(Fdelete_frame): Fix stupid typo.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 11 Feb 2008 05:25:15 +0000
parents c33ec1f680a9
children ad6ac471fdea
comparison
equal deleted inserted replaced
91760:d92379babb32 91761:a21ac0ad90f7
1408 1408
1409 /* Run `delete-frame-functions' 1409 /* Run `delete-frame-functions'
1410 unless FORCE is `noelisp' or frame is a tooltip. 1410 unless FORCE is `noelisp' or frame is a tooltip.
1411 FORCE is set to `noelisp' when handling a disconnect from the terminal, 1411 FORCE is set to `noelisp' when handling a disconnect from the terminal,
1412 so we don't dare call Lisp code. */ 1412 so we don't dare call Lisp code. */
1413 if (!NILP (Vrun_hooks) && EQ (force, Qnoelisp) 1413 if (!NILP (Vrun_hooks) && !EQ (force, Qnoelisp)
1414 && NILP (Fframe_parameter (frame, intern ("tooltip")))) 1414 && NILP (Fframe_parameter (frame, intern ("tooltip"))))
1415 { 1415 {
1416 Lisp_Object args[2]; 1416 Lisp_Object args[2];
1417 struct gcpro gcpro1, gcpro2; 1417 struct gcpro gcpro1, gcpro2;
1418 1418