diff options
| author | Richard M. Stallman | 1996-06-21 20:58:52 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-06-21 20:58:52 +0000 |
| commit | 6c58b173c9df7a77dee63ba5effc2261167dba7a (patch) | |
| tree | 9911ac922e9a58ab23e82d9c940bc67e5fabc22f | |
| parent | 6ce29929455abeedc127bb1cbcd3b1baefca0d0e (diff) | |
| download | emacs-6c58b173c9df7a77dee63ba5effc2261167dba7a.tar.gz emacs-6c58b173c9df7a77dee63ba5effc2261167dba7a.zip | |
(asm-mode-map): Bind C-c ; to comment-region.
| -rw-r--r-- | lisp/progmodes/asm-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/progmodes/asm-mode.el b/lisp/progmodes/asm-mode.el index 71d599d4f60..59035a1afb0 100644 --- a/lisp/progmodes/asm-mode.el +++ b/lisp/progmodes/asm-mode.el | |||
| @@ -67,6 +67,7 @@ | |||
| 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-i" 'tab-to-tab-stop) | 71 | (define-key asm-mode-map "\C-i" 'tab-to-tab-stop) |
| 71 | (define-key asm-mode-map "\C-j" 'asm-newline) | 72 | (define-key asm-mode-map "\C-j" 'asm-newline) |
| 72 | (define-key asm-mode-map "\C-m" 'asm-newline) | 73 | (define-key asm-mode-map "\C-m" 'asm-newline) |