* progmodes/octave-mod.el (octave-mode-map): Fix key binding to
authorLeo Liu <sdl.web@gmail.com>
Wed, 17 Apr 2013 01:46:26 +0000 (09:46 +0800)
committerLeo Liu <sdl.web@gmail.com>
Wed, 17 Apr 2013 01:46:26 +0000 (09:46 +0800)
octave-hide-process-buffer.

lisp/ChangeLog
lisp/progmodes/octave-mod.el

index de1121f..23b873d 100644 (file)
@@ -1,3 +1,8 @@
+2013-04-17  Leo Liu  <sdl.web@gmail.com>
+
+       * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
+       octave-hide-process-buffer.
+
 2013-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
index 4f70cf7..8bdc74c 100644 (file)
@@ -235,8 +235,7 @@ parenthetical grouping.")
     (define-key map "\C-c\C-i\C-f" 'octave-send-defun)
     (define-key map "\C-c\C-i\C-r" 'octave-send-region)
     (define-key map "\C-c\C-i\C-s" 'octave-show-process-buffer)
-    ;; FIXME: free C-h so it can do the describe-prefix-bindings.
-    (define-key map "\C-c\C-i\C-h" 'octave-hide-process-buffer)
+    (define-key map "\C-c\C-i\C-q" 'octave-hide-process-buffer)
     (define-key map "\C-c\C-i\C-k" 'octave-kill-process)
     map)
   "Keymap used in Octave mode.")