# HG changeset patch # User Dave Love # Date 892058939 0 # Node ID 79711f0f40791b4ff8750a5fbab051130fdc292b # Parent a080769e8f7db84b18179a5a39b098572e10b809 (fortran-fill-paragraph): This is the one which must return t, not: (fortran-fill-statement): diff -r a080769e8f7d -r 79711f0f4079 lisp/progmodes/fortran.el --- a/lisp/progmodes/fortran.el Wed Apr 08 17:31:45 1998 +0000 +++ b/lisp/progmodes/fortran.el Wed Apr 08 18:08:59 1998 +0000 @@ -1768,7 +1768,8 @@ (let (fill-paragraph-function) (fill-region start end justify))) ; with normal `fill-paragraph' (set-marker start nil) - (set-marker end nil))))) + (set-marker end nil)))) + t) (defun fortran-fill-statement () "Fill a fortran statement up to `fill-column'." @@ -1791,8 +1792,7 @@ (forward-line) (fortran-remove-continuation))) (fortran-previous-statement))) - (fortran-indent-line) - t) ; must return t for fill-paragraph + (fortran-indent-line)) (provide 'fortran)