From 9a8ba072baee2ce8678a636f18fabd0af57110ed Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 2 Apr 2002 17:29:58 +0000 Subject: [PATCH] (f90-indent-subprogram): Braino (missing arg). --- lisp/progmodes/f90.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el index c2f0c4686ef..4588e8f73b6 100644 --- a/lisp/progmodes/f90.el +++ b/lisp/progmodes/f90.el @@ -1417,11 +1417,11 @@ If run in the middle of a line, the line is not broken." (progn (message "Indenting %s %s..." (car program) (car (cdr program))) - (indent-region (point) (mark)) + (indent-region (point) (mark) nil) (message "Indenting %s %s...done" (car program) (car (cdr program)))) (message "Indenting the whole file...") - (indent-region (point) (mark)) + (indent-region (point) (mark) nil) (message "Indenting the whole file...done"))))) ;; autofill and break-line -- 2.39.5