* progmodes/octave.el (octave-mode-map): Bind octave-indent-defun to
authorLeo Liu <sdl.web@gmail.com>
Mon, 13 May 2013 01:36:42 +0000 (09:36 +0800)
committerLeo Liu <sdl.web@gmail.com>
Mon, 13 May 2013 01:36:42 +0000 (09:36 +0800)
C-c C-q instead of C-M-q.

lisp/ChangeLog
lisp/progmodes/octave.el

index 62f094d..9fdb5fd 100644 (file)
@@ -2,6 +2,8 @@
 
        * progmodes/octave.el (octave-indent-comment): Fix the indentation
        of ### or %%%.
+       (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
+       C-M-q.
 
 2013-05-12  Leo Liu  <sdl.web@gmail.com>
 
index f00347d..fc1e7bb 100644 (file)
@@ -96,9 +96,10 @@ parenthetical grouping.")
 \f
 (defvar octave-mode-map
   (let ((map (make-sparse-keymap)))
-    (define-key map "\M-." 'octave-find-definition)
-    (define-key map "\e\n" 'octave-indent-new-comment-line)
-    (define-key map "\M-\C-q" 'octave-indent-defun)
+    (define-key map "\M-."     'octave-find-definition)
+    (define-key map "\M-\C-j"  'octave-indent-new-comment-line)
+    ;; C-c C-q is also used by cc modes for similar command
+    (define-key map "\C-c\C-q" 'octave-indent-defun)
     (define-key map "\C-c\C-p" 'octave-previous-code-line)
     (define-key map "\C-c\C-n" 'octave-next-code-line)
     (define-key map "\C-c\C-a" 'octave-beginning-of-line)