# HG changeset patch # User Richard M. Stallman # Date 807056435 0 # Node ID ad18c3ad23b3fdccc02411911d9c0e73f97d3232 # Parent 192f537bca2ad19f6ac062923efcffe2d4df163f (fortran-break-line): Fixed a bug that sometimes deleted first character in statement field of continuation line. diff -r 192f537bca2a -r ad18c3ad23b3 lisp/progmodes/fortran.el --- a/lisp/progmodes/fortran.el Sat Jul 29 01:40:43 1995 +0000 +++ b/lisp/progmodes/fortran.el Sat Jul 29 22:20:35 1995 +0000 @@ -1507,9 +1507,8 @@ (or (looking-at " [^ 0\n]") (looking-at "\t[1-9]"))) (progn - (forward-line 1) - (delete-indentation) - (delete-char 2) + (end-of-line) + (delete-region (point) (match-end 0)) (delete-horizontal-space) (fortran-do-auto-fill)) (fortran-split-line))