]> git.eshelyaron.com Git - emacs.git/commitdiff
(f90-mode-map): Don't bind \t and \r.
authorGlenn Morris <rgm@gnu.org>
Fri, 12 Sep 2008 03:09:30 +0000 (03:09 +0000)
committerGlenn Morris <rgm@gnu.org>
Fri, 12 Sep 2008 03:09:30 +0000 (03:09 +0000)
lisp/ChangeLog
lisp/progmodes/f90.el

index 701cfca5aed23da6a74bd9b923555975fe2244a6..087317bcdcaf0c2b0f2f11dba9811c1984341f5a 100644 (file)
@@ -1,5 +1,7 @@
 2008-09-12  Glenn Morris  <rgm@gnu.org>
 
+       * progmodes/f90.el (f90-mode-map): Don't bind \t and \r.
+
        * indent.el (indent-line-function): Doc fix.
        * progmodes/sh-script.el (sh-font-lock-open-heredoc): Doc fix.
 
index 6e5dee5130a5c44553374aa9fd56519b61588b1f..a53e103c6f81ebb19294959973b1695e14960c93 100644 (file)
@@ -653,7 +653,7 @@ Can be overridden by the value of `font-lock-maximum-decoration'.")
     (define-key map "\C-\M-p"  'f90-beginning-of-block)
     (define-key map "\C-\M-q"  'f90-indent-subprogram)
     (define-key map "\C-j"     'f90-indent-new-line) ; LFD equals C-j
-    (define-key map "\r"       'newline)
+;;;    (define-key map "\r"       'newline)
     (define-key map "\C-c\r"   'f90-break-line)
 ;;;  (define-key map [M-return] 'f90-break-line)
     (define-key map "\C-c\C-a" 'f90-previous-block)
@@ -663,7 +663,8 @@ Can be overridden by the value of `font-lock-maximum-decoration'.")
     (define-key map "\C-c\C-p" 'f90-previous-statement)
     (define-key map "\C-c\C-n" 'f90-next-statement)
     (define-key map "\C-c\C-w" 'f90-insert-end)
-    (define-key map "\t"       'f90-indent-line)
+    ;; Standard tab binding will call this, and also handle regions.
+;;;    (define-key map "\t"       'f90-indent-line)
     (define-key map ","        'f90-electric-insert)
     (define-key map "+"        'f90-electric-insert)
     (define-key map "-"        'f90-electric-insert)