# HG changeset patch # User Richard M. Stallman # Date 835390732 0 # Node ID eddac6796ebd868a67f201e3177d742231245d28 # Parent 0236199fc5f192e30e307de9e9bb04d56bb13306 (asm-mode-map): Bind C-c ; to comment-region. diff -r 0236199fc5f1 -r eddac6796ebd lisp/progmodes/asm-mode.el --- a/lisp/progmodes/asm-mode.el Fri Jun 21 16:15:21 1996 +0000 +++ b/lisp/progmodes/asm-mode.el Fri Jun 21 20:58:52 1996 +0000 @@ -67,6 +67,7 @@ (setq asm-mode-map (make-sparse-keymap)) ;; Note that the comment character isn't set up until asm-mode is called. (define-key asm-mode-map ":" 'asm-colon) + (define-key f90-mode-map "\C-c;" 'comment-region) (define-key asm-mode-map "\C-i" 'tab-to-tab-stop) (define-key asm-mode-map "\C-j" 'asm-newline) (define-key asm-mode-map "\C-m" 'asm-newline)