---
** Perl mode has a new variable `perl-indent-continued-arguments'.
+---
+** Fortran mode does more font-locking by default. Use level 3
+highlighting for the old default.
+
+++
** Fortran mode has a new variable `fortran-directive-re'.
Adapt this to match the format of any compiler directives you use.
Lines that match are never indented, and are given distinctive font-locking.
+++
-** F90 mode has new navigation commands `f90-end-of-block',
-`f90-beginning-of-block', `f90-next-block', `f90-previous-block'.
+** F90 mode and Fortran mode have new navigation commands
+`f90-end-of-block', `f90-beginning-of-block', `f90-next-block',
+`f90-previous-block', `fortran-end-of-block',
+`fortran-beginning-of-block'.
---
-** F90 mode now has support for hs-minor-mode (hideshow).
+** F90 mode and Fortran mode have support for hs-minor-mode (hideshow).
It cannot deal with every code format, but ought to handle a sizeable
majority.
2005-03-29 Glenn Morris <gmorris@ast.cam.ac.uk>
+ * progmodes/fortran.el (fortran-if-indent): Doc fix.
+ (fortran-font-lock-keywords-2): Add "where", "elsewhere".
+ (fortran-font-lock-keywords-4): New variable.
+ (fortran-blocks-re, fortran-end-block-re)
+ (fortran-start-block-re): New constants, for hideshow.
+ (hs-special-modes-alist): Add a Fortran entry.
+ (fortran-mode-map): Bind fortran-end-of-block,
+ fortran-beginning-of-block to \M-\C-n, \M-\C-p.
+ (fortran-mode): Doc fix. Add fortran-font-lock-keywords-4.
+ (fortran-looking-at-if-then, fortran-end-of-block)
+ (fortran-beginning-of-block): New functions, for hideshow.
+
* progmodes/f90.el (f90-end-block-re, f90-start-block-re): Doc
fix. Tweak regexp.
(f90-beginning-of-block): Push mark first.
* programs.texi (ForIndent Vars): `fortran-if-indent' does other
constructs as well.
+ (Fortran Motion): Add fortran-end-of-block,
+ fortran-beginning-of-block.
2005-03-29 Kenichi Handa <handa@m17n.org>