From: Eli Zaretskii Date: Fri, 19 Apr 2002 12:22:13 +0000 (+0000) Subject: Update maintainer. X-Git-Tag: ttn-vms-21-2-B4~15523 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b125e64388de7d5cecb60c1dffa5d7a0d472a958;p=emacs.git Update maintainer. (f90-line-continued): Recognize blank/comment lines embedded in continuation lines. (f90-looking-at-program-block-start): No extra indentation after function or subroutine keyword appears in single quotes. --- diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el index 4588e8f73b6..dd7fc86b3a5 100644 --- a/lisp/progmodes/f90.el +++ b/lisp/progmodes/f90.el @@ -3,7 +3,7 @@ ;; Copyright (C) 1995, 1996, 1997, 2000 Free Software Foundation, Inc. ;; Author: Torbj\"orn Einarsson -;; Maintainer: Dave Love +;; Maintainer: Glenn Morris ;; Keywords: fortran, f90, languages ;; This file is part of GNU Emacs. @@ -874,6 +874,8 @@ with no args, if that value is non-nil." (defsubst f90-line-continued () (save-excursion + (beginning-of-line) + (while (and (looking-at "[ \t]*\\(!\\|$\\)") (zerop (forward-line -1)))) (let ((bol (f90-get-beg-of-line))) (end-of-line) (while (f90-in-comment) @@ -994,7 +996,7 @@ Name is non-nil only for type." (looking-at "\\(module\\)[ \t]+\\(\\sw+\\)\\>")) (list (f90-match-piece 1) (f90-match-piece 2))) ((and (not (looking-at "end[ \t]*\\(function\\|subroutine\\)")) - (looking-at "[^!\"\&\n]*\\(function\\|subroutine\\)[ \t]+\\(\\sw+\\)")) + (looking-at "[^!'\"\&\n]*\\(function\\|subroutine\\)[ \t]+\\(\\sw+\\)")) (list (f90-match-piece 1) (f90-match-piece 2))))) (defsubst f90-looking-at-program-block-end ()