Function: gdb-remove-strings

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

Signature

(gdb-remove-strings START END &optional BUFFER)

Documentation

Remove strings between START and END in BUFFER.

Remove only strings that were put in BUFFER with calls to gdb-put-string. BUFFER nil or omitted means use the current buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
;;from remove-images
(defun gdb-remove-strings (start end &optional buffer)
  "Remove strings between START and END in BUFFER.
Remove only strings that were put in BUFFER with calls to `gdb-put-string'.
BUFFER nil or omitted means use the current buffer."
  (unless buffer
    (setq buffer (current-buffer)))
  (dolist (overlay (overlays-in start end))
    (when (overlay-get overlay 'put-break)
      (delete-overlay overlay))))