+2011-04-16 Glenn Morris <rgm@gnu.org>
+
+ * progmodes/f90.el: Use lexical-binding.
+ (f90-get-correct-indent): Remove unnecessary local variable `cont'.
+
2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
* mail/sendmail.el (mail-mode-map): Use completion-at-point.
;; Copyright (C) 1995-1997, 2000-2011 Free Software Foundation, Inc.
-;; Author: Torbj\"orn Einarsson <Torbjorn.Einarsson@era.ericsson.se>
+;; Author: Torbjรถrn Einarsson <Torbjorn.Einarsson@era.ericsson.se>
;; Maintainer: Glenn Morris <rgm@gnu.org>
;; Keywords: fortran, f90, languages
(defun f90-get-correct-indent ()
"Get correct indent for a line starting with line number.
Does not check type and subprogram indentation."
- (let ((epnt (line-end-position)) icol cont)
+ (let ((epnt (line-end-position)) icol)
(save-excursion
(while (and (f90-previous-statement)
- (or (memq (setq cont (f90-present-statement-cont))
- '(middle end))
+ (or (memq (f90-present-statement-cont) '(middle end))
(looking-at "[ \t]*[0-9]"))))
(setq icol (current-indentation))
(beginning-of-line)
(provide 'f90)
+;; Local Variables:
+;; coding: utf-8
+;; lexical-binding: t
+;; End:
+
;;; f90.el ends here