Variable: gdb-edit-locals-map-1

gdb-edit-locals-map-1 is a variable defined in gdb-mi.el.gz.

Value

-          negative-argument
0          digit-argument
1          digit-argument
2          digit-argument
3          digit-argument
4          digit-argument
5          digit-argument
6          digit-argument
7          digit-argument
8          digit-argument
9          digit-argument
<mouse-2>  gdb-edit-locals-value
RET        gdb-edit-locals-value
SPC..~     undefined

Documentation

Keymap to edit value of a simple data type local variable.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
(defvar gdb-edit-locals-map-1
  (let ((map (make-sparse-keymap)))
    (suppress-keymap map)
    (define-key map "\r" 'gdb-edit-locals-value)
    (define-key map [mouse-2] 'gdb-edit-locals-value)
    map)
  "Keymap to edit value of a simple data type local variable.")