summaryrefslogtreecommitdiff
path: root/lisp/frame.el
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1993-09-07 00:53:48 +0000
committerRoland McGrath <roland@gnu.org>1993-09-07 00:53:48 +0000
commit68cd265f830104789138f1dec83dc0b6d81592bd (patch)
tree82885277223598f181183f7f07fbfddcdd1086b8 /lisp/frame.el
parent5f517806dfb7f06d6ad0d97917768db7c7731aed (diff)
downloademacs-68cd265f830104789138f1dec83dc0b6d81592bd.tar.gz
(set-frame-configuration): Take new optional arg NODELETE; if non-nil,
don't delete any frames.
Diffstat (limited to 'lisp/frame.el')
-rw-r--r--lisp/frame.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index ac4304dc09f..f3cbdbb9284 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -391,10 +391,12 @@ where
(current-window-configuration frame))))
(frame-list))))
-(defun set-frame-configuration (configuration)
+(defun set-frame-configuration (configuration &optional nodelete)
"Restore the frames to the state described by CONFIGURATION.
Each frame listed in CONFIGURATION has its position, size, window
-configuration, and other parameters set as specified in CONFIGURATION."
+configuration, and other parameters set as specified in CONFIGURATION.
+Unless optional second argument NODELETE is given and non-nil, deletes
+all existing frames not listed in CONFIGURATION."
(or (frame-configuration-p configuration)
(signal 'wrong-type-argument
(list 'frame-configuration-p configuration)))
@@ -416,7 +418,8 @@ configuration, and other parameters set as specified in CONFIGURATION."
(set-window-configuration (nth 2 parameters)))
(setq frames-to-delete (cons frame frames-to-delete))))))
(frame-list))
- (mapcar 'delete-frame frames-to-delete)))
+ (or nodelete
+ (mapcar 'delete-frame frames-to-delete))))
(defun frame-configuration-p (object)
"Return non-nil if OBJECT seems to be a frame configuration.