Function: make-gdb-table

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

Signature

(make-gdb-table &key COLUMN-SIZES ROWS ROW-PROPERTIES RIGHT-ALIGN)

Documentation

Constructor for objects of type gdb-table.

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))