Function: close-display-connection
close-display-connection is an interactive and byte-compiled function
defined in frame.el.gz.
Signature
(close-display-connection DISPLAY)
Documentation
Close the connection to a display, deleting all its associated frames.
For DISPLAY, specify either a frame or a display name (a string). If DISPLAY is nil, that stands for the selected frame's display.
Probably introduced at or before Emacs version 23.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/frame.el.gz
(defun close-display-connection (display)
"Close the connection to a display, deleting all its associated frames.
For DISPLAY, specify either a frame or a display name (a string).
If DISPLAY is nil, that stands for the selected frame's display."
(interactive
(list
(let* ((default (frame-parameter nil 'display))
(display (completing-read
(format-prompt "Close display" default)
(delete-dups
(mapcar (lambda (frame)
(frame-parameter frame 'display))
(frame-list)))
nil t nil nil
default)))
(if (zerop (length display)) default display))))
(let ((frames (delq nil
(mapcar (lambda (frame)
(if (equal display
(frame-parameter frame 'display))
frame))
(frame-list)))))
(if (and (consp frames)
(not (y-or-n-p (if (cdr frames)
(format "Delete %s frames? " (length frames))
(format "Delete %s ? " (car frames))))))
(error "Abort!")
(mapc #'delete-frame frames)
(x-close-connection display))))