diff options
author | Jim Blandy <jimb@redhat.com> | 1993-05-03 04:05:33 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-05-03 04:05:33 +0000 |
commit | d5ec09ce2ef3809079c7e021e95805eac7c877d2 (patch) | |
tree | c3bc106e54f602b346dadcaa99bd4602c57dd98a /lisp/term/sun-mouse.el | |
parent | b22795d3e827777d0ab00e9012f55dd804ab48d4 (diff) | |
download | emacs-d5ec09ce2ef3809079c7e021e95805eac7c877d2.tar.gz |
* sun-mouse.el (suspend-emacstool): Run suspend-hook, not
suspend-hooks.
Diffstat (limited to 'lisp/term/sun-mouse.el')
-rw-r--r-- | lisp/term/sun-mouse.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/term/sun-mouse.el b/lisp/term/sun-mouse.el index bca3339c264..0ac9e46f4ea 100644 --- a/lisp/term/sun-mouse.el +++ b/lisp/term/sun-mouse.el @@ -665,7 +665,7 @@ If running under as a detached process emacstool, you don't want to suspend (there is no way to resume), just close the window, and wait for reopening." (interactive) - (run-hooks 'suspend-hooks) + (run-hooks 'suspend-hook) (if stuffstring (send-string-to-terminal stuffstring)) (send-string-to-terminal "\033[2t") ; To close EmacsTool window. (run-hooks 'suspend-resume-hook)) |