Function: gdb-delete-frame-or-window

gdb-delete-frame-or-window is an interactive and byte-compiled function defined in gdb-mi.el.gz.

Signature

(gdb-delete-frame-or-window)

Documentation

Delete frame if there is only one window. Otherwise delete the window.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
(defun gdb-delete-frame-or-window ()
  "Delete frame if there is only one window.  Otherwise delete the window."
  (interactive)
  (if (one-window-p) (delete-frame)
    (delete-window)))