Function: gdb-append-to-partial-output

gdb-append-to-partial-output is a byte-compiled function defined in gdb-mi.el.gz.

Signature

(gdb-append-to-partial-output STRING)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
(defun gdb-append-to-partial-output (string)
  (with-current-buffer (gdb-get-buffer-create 'gdb-partial-output-buffer)
    (goto-char (point-max))
    (insert string)))