Function: dframe-close-frame

dframe-close-frame is an interactive and byte-compiled function defined in dframe.el.gz.

Signature

(dframe-close-frame)

Documentation

Close the current frame if it is dedicated.

Probably introduced at or before Emacs version 22.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/dframe.el.gz
(defun dframe-close-frame ()
  "Close the current frame if it is dedicated."
  (interactive)
  (if dframe-controlled
      (let ((b (current-buffer)))
	(funcall dframe-controlled -1)
	(kill-buffer b))))