Variable: thread-list-mode-abbrev-table

thread-list-mode-abbrev-table is a variable defined in thread.el.gz.

Value

#<obarray n=1>

Documentation

Abbrev table for thread-list-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/thread.el.gz
(define-derived-mode thread-list-mode tabulated-list-mode "Thread-List"
  "Major mode for monitoring Lisp threads."
  (setq tabulated-list-format
        [("Thread Name" 20 t)
         ("Status" 10 t)
         ("Blocked On" 30 t)])
  (setq tabulated-list-sort-key (cons (car (aref tabulated-list-format 0)) nil))
  (setq tabulated-list-entries #'thread-list--get-entries)
  (tabulated-list-init-header))