Function: gdb-current-context-mode-name
gdb-current-context-mode-name is a byte-compiled function defined in
gdb-mi.el.gz.
Signature
(gdb-current-context-mode-name MODE)
Documentation
Add thread information to MODE which is to be used as mode-name.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
(defun gdb-current-context-mode-name (mode)
"Add thread information to MODE which is to be used as `mode-name'."
(concat mode
(if gdb-thread-number
(format " [thread %s]" gdb-thread-number)
"")))