Variable: gdb-locals-table-row-config

gdb-locals-table-row-config is a customizable variable defined in gdb-mi.el.gz.

Value

((name . 20) (type . 20) (value . 100))

Documentation

Configuration for table rows in the local variable display.

An alist that controls the display of the name, type and value of local variables inside the currently active stack-frame. The key controls which column to change whereas the value determines the maximum number of characters to display in each column. A value of 0 means there is no limit.

Additionally, the order the element in the alist determines the left-to-right display order of the properties.

This variable was added, or its default value changed, in Emacs 30.1.

Probably introduced at or before Emacs version 30.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
(defcustom gdb-locals-table-row-config `((name . 20)
                                         (type . 20)
                                         (value . ,gdb-locals-value-limit))
  "Configuration for table rows in the local variable display.

An alist that controls the display of the name, type and value of
local variables inside the currently active stack-frame.  The key
controls which column to change whereas the value determines the
maximum number of characters to display in each column.  A value
of 0 means there is no limit.

Additionally, the order the element in the alist determines the
left-to-right display order of the properties."
  :type '(alist :key-type symbol :value-type integer)
  :group 'gud
  :version "30.1")