diff options
| author | Stefan Monnier | 2008-02-11 05:25:15 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-02-11 05:25:15 +0000 |
| commit | 5897f4405579d2123e5ec2d66afc6f63f1251233 (patch) | |
| tree | d315fdaa0bbfa0567a08de4c0aa6ed8b6f3f5491 /src | |
| parent | 3dc4febd478531e1fa4805f8aa067575d312e277 (diff) | |
| download | emacs-5897f4405579d2123e5ec2d66afc6f63f1251233.tar.gz emacs-5897f4405579d2123e5ec2d66afc6f63f1251233.zip | |
(Fdelete_frame): Fix stupid typo.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. */) | |||
| 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]; |