aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-07-29 22:20:35 +0000
committerRichard M. Stallman1995-07-29 22:20:35 +0000
commitb8313955da4d0a55660fdec0b64ddb24df2ba6a7 (patch)
tree6c43f67d498b155117852079161e69023a7506a0
parent503b5c85913d2d845e1acfd6df66977c96c2dd94 (diff)
downloademacs-b8313955da4d0a55660fdec0b64ddb24df2ba6a7.tar.gz
emacs-b8313955da4d0a55660fdec0b64ddb24df2ba6a7.zip
(fortran-break-line): Fixed a bug that sometimes
deleted first character in statement field of continuation line.
-rw-r--r--lisp/progmodes/fortran.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el
index 19eb1218a3a..a0a4db58551 100644
--- a/lisp/progmodes/fortran.el
+++ b/lisp/progmodes/fortran.el
@@ -1507,9 +1507,8 @@ automatically breaks the line at a previous space."
1507 (or (looking-at " [^ 0\n]") 1507 (or (looking-at " [^ 0\n]")
1508 (looking-at "\t[1-9]"))) 1508 (looking-at "\t[1-9]")))
1509 (progn 1509 (progn
1510 (forward-line 1) 1510 (end-of-line)
1511 (delete-indentation) 1511 (delete-region (point) (match-end 0))
1512 (delete-char 2)
1513 (delete-horizontal-space) 1512 (delete-horizontal-space)
1514 (fortran-do-auto-fill)) 1513 (fortran-do-auto-fill))
1515 (fortran-split-line)) 1514 (fortran-split-line))