comparison lisp/progmodes/asm-mode.el @ 15481:a54558280682

(asm-mode-map): Fix typo.
author Erik Naggum <erik@naggum.no>
date Sat, 22 Jun 1996 02:14:01 +0000
parents eddac6796ebd
children 11218164bc54
comparison
equal deleted inserted replaced
15480:43a3308fcf61 15481:a54558280682
65 (if asm-mode-map 65 (if asm-mode-map
66 nil 66 nil
67 (setq asm-mode-map (make-sparse-keymap)) 67 (setq asm-mode-map (make-sparse-keymap))
68 ;; Note that the comment character isn't set up until asm-mode is called. 68 ;; Note that the comment character isn't set up until asm-mode is called.
69 (define-key asm-mode-map ":" 'asm-colon) 69 (define-key asm-mode-map ":" 'asm-colon)
70 (define-key f90-mode-map "\C-c;" 'comment-region) 70 (define-key asm-mode-map "\C-c;" 'comment-region)
71 (define-key asm-mode-map "\C-i" 'tab-to-tab-stop) 71 (define-key asm-mode-map "\C-i" 'tab-to-tab-stop)
72 (define-key asm-mode-map "\C-j" 'asm-newline) 72 (define-key asm-mode-map "\C-j" 'asm-newline)
73 (define-key asm-mode-map "\C-m" 'asm-newline) 73 (define-key asm-mode-map "\C-m" 'asm-newline)
74 ) 74 )
75 75