Mercurial > emacs
changeset 6141:fefa088fc7f9
(iconify-or-deiconify-frame): Don't make invisible before making visible.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Wed, 02 Mar 1994 05:29:01 +0000 |
parents | 35fc497c9f4e |
children | 2dbc79d01191 |
files | lisp/term/x-win.el |
diffstat | 1 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/term/x-win.el Wed Mar 02 05:24:33 1994 +0000 +++ b/lisp/term/x-win.el Wed Mar 02 05:29:01 1994 +0000 @@ -464,9 +464,7 @@ (interactive) (if (eq (cdr (assq 'visibility (frame-parameters))) t) (iconify-frame) - (let ((foo (selected-frame))) - (make-frame-invisible foo t) - (make-frame-visible foo)))) + (make-frame-visible))) (substitute-key-definition 'suspend-emacs 'iconify-or-deiconify-frame global-map)