Function: gdb-table-rows

gdb-table-rows is a byte-compiled function defined in gdb-mi.el.gz.

Signature

(gdb-table-rows CL-X)

Documentation

Access slot "rows" of gdb-table struct CL-X.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
;; gdb-table struct is a way to programmatically construct simple
;; tables. It help to reliably align columns of data in GDB buffers
;; and provides
(cl-defstruct gdb-table
  (column-sizes nil)
  (rows nil)
  (row-properties nil)
  (right-align nil))