Function: gdb-remove-breakpoint-icons

gdb-remove-breakpoint-icons is a byte-compiled function defined in gdb-mi.el.gz.

Signature

(gdb-remove-breakpoint-icons START END &optional REMOVE-MARGIN)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
(defun gdb-remove-breakpoint-icons (start end &optional remove-margin)
  (gdb-remove-strings start end)
  (if (display-images-p)
      (remove-images start end))
  (when remove-margin
    (setq left-margin-width 0)
    (let ((window (get-buffer-window (current-buffer) 0)))
      (if window
          (set-window-margins
           window left-margin-width right-margin-width)))))