]> git.eshelyaron.com Git - emacs.git/commitdiff
(f90-mode-abbrev-table): Fix abbrev for "include".
authorGlenn Morris <rgm@gnu.org>
Tue, 13 Aug 2002 17:55:15 +0000 (17:55 +0000)
committerGlenn Morris <rgm@gnu.org>
Tue, 13 Aug 2002 17:55:15 +0000 (17:55 +0000)
lisp/ChangeLog
lisp/progmodes/f90.el

index 881da3370ab7db66cd7e21ae2a857afd4b60c331..f1cb212f8eb604c971071fce378f2ff82aaf916e 100644 (file)
@@ -1,3 +1,7 @@
+2002-08-13  Glenn Morris  <gmorris@ast.cam.ac.uk>
+
+       * progmodes/f90.el (f90-mode-abbrev-table): Fix abbrev for "include".
+
 2002-08-12  Richard M. Stallman  <rms@gnu.org>
 
        * calendar/appt.el (appt-make-list): Correct the parsing of
index aeeab4d85eccbf59f71b64d8041d49e6a3d89681..f13bfb93317533aa46f4dafa99b5c4847f7123df 100644 (file)
@@ -735,7 +735,7 @@ program\\|select\\|subroutine\\|type\\|where\\|forall\\)\\>")
     (define-abbrev f90-mode-abbrev-table  "`fu"  "function" nil)
     (define-abbrev f90-mode-abbrev-table  "`fa"  ".false." nil)
     (define-abbrev f90-mode-abbrev-table  "`im"  "implicit none" nil)
-    (define-abbrev f90-mode-abbrev-table  "`in " "include" nil)
+    (define-abbrev f90-mode-abbrev-table  "`in "include" nil)
     (define-abbrev f90-mode-abbrev-table  "`i"   "integer" nil)
     (define-abbrev f90-mode-abbrev-table  "`it"  "intent" nil)
     (define-abbrev f90-mode-abbrev-table  "`if"  "interface" nil)