Function: gdbmi-bnf-out-of-band-record

gdbmi-bnf-out-of-band-record is a byte-compiled function defined in gdb-mi.el.gz.

Signature

(gdbmi-bnf-out-of-band-record)

Documentation

Implementation of the following GDB/MI output grammar rule:

  out-of-band-record ==>
       async-record | stream-record

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
(defun gdbmi-bnf-out-of-band-record ()
  "Implementation of the following GDB/MI output grammar rule:

  out-of-band-record ==>
       async-record | stream-record"

  (or (gdbmi-bnf-async-record)
      (gdbmi-bnf-stream-record)))