From: Glenn Morris Date: Tue, 13 Aug 2002 17:55:15 +0000 (+0000) Subject: (f90-mode-abbrev-table): Fix abbrev for "include". X-Git-Tag: emacs-pretest-21.2.91~124 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c63aa89d330cf9f0f7840718b6bd37196119dba1;p=emacs.git (f90-mode-abbrev-table): Fix abbrev for "include". --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 881da3370ab..f1cb212f8eb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2002-08-13 Glenn Morris + + * progmodes/f90.el (f90-mode-abbrev-table): Fix abbrev for "include". + 2002-08-12 Richard M. Stallman * calendar/appt.el (appt-make-list): Correct the parsing of diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el index aeeab4d85ec..f13bfb93317 100644 --- a/lisp/progmodes/f90.el +++ b/lisp/progmodes/f90.el @@ -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)