aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/progmodes/f90.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el
index cdbc24cd391..6b0a44f44ab 100644
--- a/lisp/progmodes/f90.el
+++ b/lisp/progmodes/f90.el
@@ -1007,8 +1007,9 @@ All others return `comment-column', leaving at least one space after code."
1007 (skip-chars-backward " \t") 1007 (skip-chars-backward " \t")
1008 (bolp))) 1008 (bolp)))
1009 (f90-calculate-indent)) 1009 (f90-calculate-indent))
1010 (t (skip-chars-backward " \t") 1010 (t (save-excursion
1011 (max (if (bolp) 0 (1+ (current-column))) comment-column)))) 1011 (skip-chars-backward " \t")
1012 (max (if (bolp) 0 (1+ (current-column))) comment-column)))))
1012 1013
1013(defsubst f90-present-statement-cont () 1014(defsubst f90-present-statement-cont ()
1014 "Return continuation properties of present statement. 1015 "Return continuation properties of present statement.