+2001-12-18 Dave Love <fx@gnu.org>
+
+ * progmodes/f90.el (f90-break-line): Avoid infinite recursion
+ calling `newline'.
+
2001-12-14 Andre Spiegel <spiegel@gnu.org>
* vc-hooks.el (vc-checkout-model, vc-state, vc-workfile-version):
;;; Code:
-(defconst bug-f90-mode "T.Einarsson@clab.ericsson.se"
- "Address of mailing list for F90 mode bugs.")
-
;; User options
(defgroup f90 nil
(interactive)
(let (ctype)
(cond ((f90-in-string)
- (insert "&") (newline) (insert "&"))
+ (insert "&\n&"))
((f90-in-comment)
(setq ctype (f90-get-present-comment-type))
- (newline)
+ (newline 1)
(insert ctype))
(t (insert "&")
(if (not no-update) (f90-update-line))
- (newline)
+ (newline 1)
(if f90-beginning-ampersand (insert "&")))))
(f90-indent-line))