Variable: gdb-memory-unit
gdb-memory-unit is a customizable variable defined in gdb-mi.el.gz.
Value
4
Documentation
Unit size of data items in memory window.
This variable was added, or its default value changed, in Emacs 23.2.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
(defcustom gdb-memory-unit 4
"Unit size of data items in memory window."
:type '(choice (const :tag "Byte" 1)
(const :tag "Halfword" 2)
(const :tag "Word" 4)
(const :tag "Giant word" 8))
:group 'gud
:version "23.2")