Variable: asm-mode-map

asm-mode-map is a variable defined in asm-mode.el.gz.

Value

:      asm-colon
C-c ;  comment-region

Documentation

Keymap for Asm mode.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/asm-mode.el.gz
(defvar asm-mode-map
  (let ((map (make-sparse-keymap)))
    ;; Note that the comment character isn't set up until asm-mode is called.
    (define-key map ":"		'asm-colon)
    (define-key map "\C-c;"	'comment-region)
    map)
  "Keymap for Asm mode.")