summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-02-09 23:19:02 +0000
committerKarl Heuer <kwzh@gnu.org>1996-02-09 23:19:02 +0000
commit2174e23761b0ce43b0c7e593b3147aabc0cb3887 (patch)
treec8f7c75cfcfc87a4817ff23f6fddf485c37ece05
parente388b775b3191290720a7ee3a232c9d12361313f (diff)
downloademacs-2174e23761b0ce43b0c7e593b3147aabc0cb3887.tar.gz
(f90-indent-subprogram): Fix message.
-rw-r--r--lisp/progmodes/f90.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el
index b858e319fcb..aa6de50b3aa 100644
--- a/lisp/progmodes/f90.el
+++ b/lisp/progmodes/f90.el
@@ -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)