]> git.eshelyaron.com Git - emacs.git/commitdiff
(iconify-or-deiconify-frame): Move to frame.el.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sat, 24 May 2003 16:22:20 +0000 (16:22 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sat, 24 May 2003 16:22:20 +0000 (16:22 +0000)
lisp/term/w32-win.el

index 565f9a6b5b57e992431a251880f710da266445e2..923f3f5ea14c3ec2837ddaa68e3906a214102e65 100644 (file)
@@ -1,6 +1,6 @@
 ;;; w32-win.el --- parse switches controlling interface with W32 window system
 
-;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
+;; Copyright (C) 1993, 1994, 2003 Free Software Foundation, Inc.
 
 ;; Author: Kevin Gallo
 ;; Keywords: terminals
@@ -1066,13 +1066,6 @@ XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp")
 (global-set-key [f10] (lambda ()
                        (interactive) (w32-send-sys-command ?\xf100)))
 
-(defun iconify-or-deiconify-frame ()
-  "Iconify the selected frame, or deiconify if it's currently an icon."
-  (interactive)
-  (if (eq (cdr (assq 'visibility (frame-parameters))) t)
-      (iconify-frame)
-    (make-frame-visible)))
-
 (substitute-key-definition 'suspend-emacs 'iconify-or-deiconify-frame
                           global-map)