]> git.eshelyaron.com Git - emacs.git/commitdiff
(f90-indent-subprogram): Fix message.
authorKarl Heuer <kwzh@gnu.org>
Fri, 9 Feb 1996 23:19:02 +0000 (23:19 +0000)
committerKarl Heuer <kwzh@gnu.org>
Fri, 9 Feb 1996 23:19:02 +0000 (23:19 +0000)
lisp/progmodes/f90.el

index b858e319fcb3e2bc6227c54f525aab161d8a2cfe..aa6de50b3aa04479a088b3b3ab0ce98ea12a2d67 100644 (file)
@@ -1417,14 +1417,14 @@ If run in the middle of a line, the line is not broken."
       (setq program (f90-mark-subprogram))
       (if program
          (progn
-           (message "Indenting %s %s."
+           (message "Indenting %s %s..."
                     (car program) (car (cdr program)))
            (f90-indent-region (point) (mark))
-           (message "Indenting %s %s...done."
+           (message "Indenting %s %s...done"
                     (car program) (car (cdr program))))
-       (message "Indenting the whole file.")
+       (message "Indenting the whole file...")
        (f90-indent-region (point) (mark))
-       (message "Indenting the whole file...done.")))))
+       (message "Indenting the whole file...done")))))
 
 ;; autofill and break-line
 (defun f90-break-line (&optional no-update)