aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-05-30 18:39:22 +0000
committerKarl Heuer1995-05-30 18:39:22 +0000
commit46be8793650611f8f3dbf1d28a01cd77895c2cc0 (patch)
tree671b757eb3edef4197eb04cb68d09aed255ece45
parentf34eaa2c2fe5b35014705484e26fe43beaaecead (diff)
downloademacs-46be8793650611f8f3dbf1d28a01cd77895c2cc0.tar.gz
emacs-46be8793650611f8f3dbf1d28a01cd77895c2cc0.zip
(frame-configuration-p): Moved to subr.el.
-rw-r--r--lisp/frame.el8
1 files changed, 0 insertions, 8 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index 4e9fee8ec2a..e1fb765a13b 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -557,14 +557,6 @@ is given and non-nil, the unwanted frames are iconified instead."
557 ;; for where to put it. 557 ;; for where to put it.
558 (mapcar 'iconify-frame frames-to-delete) 558 (mapcar 'iconify-frame frames-to-delete)
559 (mapcar 'delete-frame frames-to-delete)))) 559 (mapcar 'delete-frame frames-to-delete))))
560
561(defun frame-configuration-p (object)
562 "Return non-nil if OBJECT seems to be a frame configuration.
563Any list whose car is `frame-configuration' is assumed to be a frame
564configuration."
565 (and (consp object)
566 (eq (car object) 'frame-configuration)))
567
568 560
569;;;; Convenience functions for accessing and interactively changing 561;;;; Convenience functions for accessing and interactively changing
570;;;; frame parameters. 562;;;; frame parameters.