Variable: timer-list-mode-map

timer-list-mode-map is a variable defined in timer-list.el.gz.

Value

c  timer-list-cancel

Documentation

Keymap for timer-list-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/timer-list.el.gz
;; This command can be destructive if they don't know what they are
;; doing.  Kids, don't try this at home!
;;;###autoload (put 'list-timers 'disabled "Beware: manually canceling timers can ruin your Emacs session.")

(defvar timer-list-mode-map
  (let ((map (make-sparse-keymap)))
    (define-key map "c" 'timer-list-cancel)
    (easy-menu-define nil map ""
      '("Timers"
	["Cancel" timer-list-cancel t]))
    map))