diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/progmodes/fortran.el | 5 |
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)) |