Variable: gdb-frames-mode-hook
gdb-frames-mode-hook is a variable defined in gdb-mi.el.gz.
Value
nil
Documentation
Hook run after entering Frames mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
(define-derived-mode gdb-frames-mode gdb-parent-mode "Frames"
"Major mode for gdb call stack."
(setq gdb-stack-position (make-marker))
(add-to-list 'overlay-arrow-variable-list 'gdb-stack-position)
(setq truncate-lines t) ;; Make it easier to see overlay arrow.
(setq-local font-lock-defaults '(gdb-frames-font-lock-keywords))
'gdb-invalidate-frames)