From: Erik Naggum Date: Sat, 22 Jun 1996 02:14:01 +0000 (+0000) Subject: (asm-mode-map): Fix typo. X-Git-Tag: emacs-19.34~381 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=16bba9cabc8c047c830698a1d6f0b367e5516945;p=emacs.git (asm-mode-map): Fix typo. --- diff --git a/lisp/progmodes/asm-mode.el b/lisp/progmodes/asm-mode.el index 59035a1afb0..3a0370bdaaf 100644 --- a/lisp/progmodes/asm-mode.el +++ b/lisp/progmodes/asm-mode.el @@ -67,7 +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-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)